pub struct InternalAddress {
pub guid: Guid,
pub name: String,
pub organization: String,
pub street_address: String,
pub address_level3: String,
pub address_level2: String,
pub address_level1: String,
pub postal_code: String,
pub country: String,
pub tel: String,
pub email: String,
pub metadata: Metadata,
}
Fields§
§guid: Guid
§name: String
§organization: String
§street_address: String
§address_level3: String
§address_level2: String
§address_level1: String
§postal_code: String
§country: String
§tel: String
§email: String
§metadata: Metadata
Implementations§
source§impl InternalAddress
impl InternalAddress
pub fn from_row(row: &Row<'_>) -> Result<InternalAddress, Error>
Trait Implementations§
source§impl Clone for InternalAddress
impl Clone for InternalAddress
source§fn clone(&self) -> InternalAddress
fn clone(&self) -> InternalAddress
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InternalAddress
impl Debug for InternalAddress
source§impl Default for InternalAddress
impl Default for InternalAddress
source§fn default() -> InternalAddress
fn default() -> InternalAddress
Returns the “default value” for a type. Read more
source§impl From<InternalAddress> for Address
impl From<InternalAddress> for Address
source§fn from(ia: InternalAddress) -> Self
fn from(ia: InternalAddress) -> Self
Converts to this type from the input type.
source§impl SyncRecord for InternalAddress
impl SyncRecord for InternalAddress
source§fn merge(
incoming: &Self,
local: &Self,
mirror: &Option<Self>,
) -> MergeResult<Self>
fn merge( incoming: &Self, local: &Self, mirror: &Option<Self>, ) -> MergeResult<Self>
Performs a three-way merge between an incoming, local, and mirror record. If a merge cannot be successfully completed (ie, if we find the same field has changed both locally and remotely since the last sync), the local record data is returned with a new guid and updated sync metadata. Note that mirror being None is an edge-case and typically means first sync since a “reset” (eg, disconnecting and reconnecting.
fn record_name() -> &'static str
fn id(&self) -> &Guid
fn metadata(&self) -> &Metadata
fn metadata_mut(&mut self) -> &mut Metadata
Auto Trait Implementations§
impl Freeze for InternalAddress
impl RefUnwindSafe for InternalAddress
impl Send for InternalAddress
impl Sync for InternalAddress
impl Unpin for InternalAddress
impl UnwindSafe for InternalAddress
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Read more