pub struct CreateIssuingCardLifecycleControls {
pub cancel_after: CreateIssuingCardLifecycleControlsCancelAfter,
}Expand description
Rules that control the lifecycle of this card, such as automatic cancellation. Refer to our documentation for more details.
Fields§
§cancel_after: CreateIssuingCardLifecycleControlsCancelAfterCancels the card after the specified conditions are met.
Implementations§
Source§impl CreateIssuingCardLifecycleControls
impl CreateIssuingCardLifecycleControls
pub fn new( cancel_after: impl Into<CreateIssuingCardLifecycleControlsCancelAfter>, ) -> Self
Trait Implementations§
Source§impl Clone for CreateIssuingCardLifecycleControls
impl Clone for CreateIssuingCardLifecycleControls
Source§fn clone(&self) -> CreateIssuingCardLifecycleControls
fn clone(&self) -> CreateIssuingCardLifecycleControls
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 PartialEq for CreateIssuingCardLifecycleControls
impl PartialEq for CreateIssuingCardLifecycleControls
Source§fn eq(&self, other: &CreateIssuingCardLifecycleControls) -> bool
fn eq(&self, other: &CreateIssuingCardLifecycleControls) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CreateIssuingCardLifecycleControls
impl Eq for CreateIssuingCardLifecycleControls
impl StructuralPartialEq for CreateIssuingCardLifecycleControls
Auto Trait Implementations§
impl Freeze for CreateIssuingCardLifecycleControls
impl RefUnwindSafe for CreateIssuingCardLifecycleControls
impl Send for CreateIssuingCardLifecycleControls
impl Sync for CreateIssuingCardLifecycleControls
impl Unpin for CreateIssuingCardLifecycleControls
impl UnsafeUnpin for CreateIssuingCardLifecycleControls
impl UnwindSafe for CreateIssuingCardLifecycleControls
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