pub enum SentEmailCode {
SentEmailCode(SentEmailCode),
}Expand description
Variants§
SentEmailCode(SentEmailCode)
Trait 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 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