pub struct UpdateCardRequest {
pub status: Option<CardStatus>,
pub limit: Option<CardLimit>,
pub billing: Option<BillingAddress>,
pub configuration: Option<CardConfiguration>,
}Expand description
Request to update a card
Fields§
§status: Option<CardStatus>§limit: Option<CardLimit>§billing: Option<BillingAddress>§configuration: Option<CardConfiguration>Trait Implementations§
Source§impl Clone for UpdateCardRequest
impl Clone for UpdateCardRequest
Source§fn clone(&self) -> UpdateCardRequest
fn clone(&self) -> UpdateCardRequest
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 UpdateCardRequest
impl Debug for UpdateCardRequest
Source§impl<'de> Deserialize<'de> for UpdateCardRequest
impl<'de> Deserialize<'de> for UpdateCardRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateCardRequest
impl RefUnwindSafe for UpdateCardRequest
impl Send for UpdateCardRequest
impl Sync for UpdateCardRequest
impl Unpin for UpdateCardRequest
impl UnwindSafe for UpdateCardRequest
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