pub enum BankCardData {
BankCardData(BankCardData),
}Expand description
Variants§
BankCardData(BankCardData)
Trait Implementations§
Source§impl Clone for BankCardData
impl Clone for BankCardData
Source§fn clone(&self) -> BankCardData
fn clone(&self) -> BankCardData
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 BankCardData
impl Debug for BankCardData
Source§impl Deserializable for BankCardData
impl Deserializable for BankCardData
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<BankCardData> for BankCardData
impl From<BankCardData> for BankCardData
Source§fn from(x: BankCardData) -> Self
fn from(x: BankCardData) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BankCardData
impl PartialEq for BankCardData
Source§impl Serializable for BankCardData
impl Serializable for BankCardData
Source§impl TryFrom<BankCardData> for BankCardData
impl TryFrom<BankCardData> for BankCardData
Source§type Error = BankCardData
type Error = BankCardData
The type returned in the event of a conversion error.
impl StructuralPartialEq for BankCardData
Auto Trait Implementations§
impl Freeze for BankCardData
impl RefUnwindSafe for BankCardData
impl Send for BankCardData
impl Sync for BankCardData
impl Unpin for BankCardData
impl UnsafeUnpin for BankCardData
impl UnwindSafe for BankCardData
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