pub struct BankCardData {
pub title: String,
pub open_urls: Vec<BankCardOpenUrl>,
}Expand description
Generated from:
payments.bankCardData#3e24e573 title:string open_urls:Vector<BankCardOpenUrl> = payments.BankCardDataFields§
§title: String§open_urls: Vec<BankCardOpenUrl>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 Identifiable for BankCardData
impl Identifiable for BankCardData
Source§const CONSTRUCTOR_ID: u32 = 0x3e24e573
const CONSTRUCTOR_ID: u32 = 0x3e24e573
The constructor ID as specified in the TL schema.
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