pub struct CustomerAcceptance {
pub accepted_at: Option<Timestamp>,
pub offline: Option<OfflineAcceptance>,
pub online: Option<OnlineAcceptance>,
pub type_: CustomerAcceptanceType,
}Fields§
§accepted_at: Option<Timestamp>The time that the customer accepts the mandate.
offline: Option<OfflineAcceptance>§online: Option<OnlineAcceptance>§type_: CustomerAcceptanceTypeThe mandate includes the type of customer acceptance information, such as: online or offline.
Trait Implementations§
Source§impl Clone for CustomerAcceptance
impl Clone for CustomerAcceptance
Source§fn clone(&self) -> CustomerAcceptance
fn clone(&self) -> CustomerAcceptance
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CustomerAcceptance
impl Debug for CustomerAcceptance
Source§impl Deserialize for CustomerAcceptance
impl Deserialize for CustomerAcceptance
Source§impl FromValueOpt for CustomerAcceptance
impl FromValueOpt for CustomerAcceptance
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for CustomerAcceptance
impl PartialEq for CustomerAcceptance
Source§fn eq(&self, other: &CustomerAcceptance) -> bool
fn eq(&self, other: &CustomerAcceptance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CustomerAcceptance
impl StructuralPartialEq for CustomerAcceptance
Auto Trait Implementations§
impl Freeze for CustomerAcceptance
impl RefUnwindSafe for CustomerAcceptance
impl Send for CustomerAcceptance
impl Sync for CustomerAcceptance
impl Unpin for CustomerAcceptance
impl UnsafeUnpin for CustomerAcceptance
impl UnwindSafe for CustomerAcceptance
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