pub struct EncryptedPinParam {
pub encrypted_number: Option<String>,
}Fields§
§encrypted_number: Option<String>The card’s desired new PIN, encrypted under Stripe’s public key.
Implementations§
Trait Implementations§
Source§impl Clone for EncryptedPinParam
impl Clone for EncryptedPinParam
Source§fn clone(&self) -> EncryptedPinParam
fn clone(&self) -> EncryptedPinParam
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 EncryptedPinParam
impl Debug for EncryptedPinParam
Source§impl Default for EncryptedPinParam
impl Default for EncryptedPinParam
Source§impl PartialEq for EncryptedPinParam
impl PartialEq for EncryptedPinParam
Source§fn eq(&self, other: &EncryptedPinParam) -> bool
fn eq(&self, other: &EncryptedPinParam) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EncryptedPinParam
impl Serialize for EncryptedPinParam
impl Eq for EncryptedPinParam
impl StructuralPartialEq for EncryptedPinParam
Auto Trait Implementations§
impl Freeze for EncryptedPinParam
impl RefUnwindSafe for EncryptedPinParam
impl Send for EncryptedPinParam
impl Sync for EncryptedPinParam
impl Unpin for EncryptedPinParam
impl UnsafeUnpin for EncryptedPinParam
impl UnwindSafe for EncryptedPinParam
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