pub struct InternalCreditCard {
pub guid: Guid,
pub cc_name: String,
pub cc_number_enc: String,
pub cc_number_last_4: String,
pub cc_exp_month: i64,
pub cc_exp_year: i64,
pub cc_type: String,
pub metadata: Metadata,
}
Fields§
§guid: Guid
§cc_name: String
§cc_number_enc: String
§cc_number_last_4: String
§cc_exp_month: i64
§cc_exp_year: i64
§cc_type: String
§metadata: Metadata
Implementations§
source§impl InternalCreditCard
impl InternalCreditCard
pub fn from_row(row: &Row<'_>) -> Result<InternalCreditCard, Error>
pub fn has_scrubbed_data(&self) -> bool
Trait Implementations§
source§impl Clone for InternalCreditCard
impl Clone for InternalCreditCard
source§fn clone(&self) -> InternalCreditCard
fn clone(&self) -> InternalCreditCard
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 InternalCreditCard
impl Debug for InternalCreditCard
source§impl Default for InternalCreditCard
impl Default for InternalCreditCard
source§fn default() -> InternalCreditCard
fn default() -> InternalCreditCard
Returns the “default value” for a type. Read more
source§impl From<InternalCreditCard> for CreditCard
impl From<InternalCreditCard> for CreditCard
source§fn from(icc: InternalCreditCard) -> Self
fn from(icc: InternalCreditCard) -> Self
Converts to this type from the input type.
source§impl SyncRecord for InternalCreditCard
impl SyncRecord for InternalCreditCard
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 InternalCreditCard
impl RefUnwindSafe for InternalCreditCard
impl Send for InternalCreditCard
impl Sync for InternalCreditCard
impl Unpin for InternalCreditCard
impl UnwindSafe for InternalCreditCard
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