pub enum Contacts {
NotModified,
Contacts(Contacts),
}Expand description
Variants§
Trait Implementations§
Source§impl Deserializable for Contacts
impl Deserializable for Contacts
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<ContactsNotModified> for Contacts
impl From<ContactsNotModified> for Contacts
Source§fn from(_x: ContactsNotModified) -> Self
fn from(_x: ContactsNotModified) -> Self
Converts to this type from the input type.
Source§impl Serializable for Contacts
impl Serializable for Contacts
impl StructuralPartialEq for Contacts
Auto Trait Implementations§
impl Freeze for Contacts
impl RefUnwindSafe for Contacts
impl Send for Contacts
impl Sync for Contacts
impl Unpin for Contacts
impl UnsafeUnpin for Contacts
impl UnwindSafe for Contacts
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