pub struct ApplePayDomain {
pub created: Timestamp,
pub domain_name: String,
pub id: ApplePayDomainId,
pub livemode: bool,
}
Fields§
§created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
domain_name: String
§id: ApplePayDomainId
Unique identifier for the object.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
Trait Implementations§
Source§impl Clone for ApplePayDomain
impl Clone for ApplePayDomain
Source§fn clone(&self) -> ApplePayDomain
fn clone(&self) -> ApplePayDomain
Returns a duplicate 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 ApplePayDomain
impl Debug for ApplePayDomain
Source§impl Deserialize for ApplePayDomain
impl Deserialize for ApplePayDomain
Source§impl FromValueOpt for ApplePayDomain
impl FromValueOpt for ApplePayDomain
fn from_value(v: Value) -> Option<Self>
Source§impl Object for ApplePayDomain
impl Object for ApplePayDomain
Source§impl ObjectDeser for ApplePayDomain
impl ObjectDeser for ApplePayDomain
Auto Trait Implementations§
impl Freeze for ApplePayDomain
impl RefUnwindSafe for ApplePayDomain
impl Send for ApplePayDomain
impl Sync for ApplePayDomain
impl Unpin for ApplePayDomain
impl UnwindSafe for ApplePayDomain
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