pub enum PopularContact {
PopularContact(PopularContact),
}Expand description
Variants§
PopularContact(PopularContact)
Trait Implementations§
Source§impl Clone for PopularContact
impl Clone for PopularContact
Source§fn clone(&self) -> PopularContact
fn clone(&self) -> PopularContact
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 PopularContact
impl Debug for PopularContact
Source§impl Deserializable for PopularContact
impl Deserializable for PopularContact
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<PopularContact> for PopularContact
impl From<PopularContact> for PopularContact
Source§fn from(x: PopularContact) -> Self
fn from(x: PopularContact) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PopularContact
impl PartialEq for PopularContact
Source§impl Serializable for PopularContact
impl Serializable for PopularContact
Source§impl TryFrom<PopularContact> for PopularContact
impl TryFrom<PopularContact> for PopularContact
Source§type Error = PopularContact
type Error = PopularContact
The type returned in the event of a conversion error.
impl StructuralPartialEq for PopularContact
Auto Trait Implementations§
impl Freeze for PopularContact
impl RefUnwindSafe for PopularContact
impl Send for PopularContact
impl Sync for PopularContact
impl Unpin for PopularContact
impl UnsafeUnpin for PopularContact
impl UnwindSafe for PopularContact
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