pub struct ContactBirthdays {
pub contacts: Vec<ContactBirthday>,
pub users: Vec<User>,
}Expand description
Generated from:
contacts.contactBirthdays#114ff30d contacts:Vector<ContactBirthday> users:Vector<User> = contacts.ContactBirthdaysFields§
§contacts: Vec<ContactBirthday>§users: Vec<User>Trait Implementations§
Source§impl Clone for ContactBirthdays
impl Clone for ContactBirthdays
Source§fn clone(&self) -> ContactBirthdays
fn clone(&self) -> ContactBirthdays
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 ContactBirthdays
impl Debug for ContactBirthdays
Source§impl Deserializable for ContactBirthdays
impl Deserializable for ContactBirthdays
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<ContactBirthdays> for ContactBirthdays
impl From<ContactBirthdays> for ContactBirthdays
Source§fn from(x: ContactBirthdays) -> Self
fn from(x: ContactBirthdays) -> Self
Converts to this type from the input type.
Source§impl Identifiable for ContactBirthdays
impl Identifiable for ContactBirthdays
Source§const CONSTRUCTOR_ID: u32 = 0x114ff30d
const CONSTRUCTOR_ID: u32 = 0x114ff30d
The constructor ID as specified in the TL schema.
Source§impl PartialEq for ContactBirthdays
impl PartialEq for ContactBirthdays
Source§impl Serializable for ContactBirthdays
impl Serializable for ContactBirthdays
Source§impl TryFrom<ContactBirthdays> for ContactBirthdays
impl TryFrom<ContactBirthdays> for ContactBirthdays
Source§type Error = ContactBirthdays
type Error = ContactBirthdays
The type returned in the event of a conversion error.
impl StructuralPartialEq for ContactBirthdays
Auto Trait Implementations§
impl Freeze for ContactBirthdays
impl RefUnwindSafe for ContactBirthdays
impl Send for ContactBirthdays
impl Sync for ContactBirthdays
impl Unpin for ContactBirthdays
impl UnsafeUnpin for ContactBirthdays
impl UnwindSafe for ContactBirthdays
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