pub struct SentEmailCode {
pub email_pattern: String,
pub length: i32,
}Expand description
Generated from:
account.sentEmailCode#811f854f email_pattern:string length:int = account.SentEmailCodeFields§
§email_pattern: String§length: i32Trait Implementations§
Source§impl Clone for SentEmailCode
impl Clone for SentEmailCode
Source§fn clone(&self) -> SentEmailCode
fn clone(&self) -> SentEmailCode
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 SentEmailCode
impl Debug for SentEmailCode
Source§impl Deserializable for SentEmailCode
impl Deserializable for SentEmailCode
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<SentEmailCode> for SentEmailCode
impl From<SentEmailCode> for SentEmailCode
Source§fn from(x: SentEmailCode) -> Self
fn from(x: SentEmailCode) -> Self
Converts to this type from the input type.
Source§impl Identifiable for SentEmailCode
impl Identifiable for SentEmailCode
Source§const CONSTRUCTOR_ID: u32 = 0x811f854f
const CONSTRUCTOR_ID: u32 = 0x811f854f
The constructor ID as specified in the TL schema.
Source§impl PartialEq for SentEmailCode
impl PartialEq for SentEmailCode
Source§impl Serializable for SentEmailCode
impl Serializable for SentEmailCode
Source§impl TryFrom<SentEmailCode> for SentEmailCode
impl TryFrom<SentEmailCode> for SentEmailCode
Source§type Error = SentEmailCode
type Error = SentEmailCode
The type returned in the event of a conversion error.
impl StructuralPartialEq for SentEmailCode
Auto Trait Implementations§
impl Freeze for SentEmailCode
impl RefUnwindSafe for SentEmailCode
impl Send for SentEmailCode
impl Sync for SentEmailCode
impl Unpin for SentEmailCode
impl UnsafeUnpin for SentEmailCode
impl UnwindSafe for SentEmailCode
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