pub struct MyBoosts {
pub my_boosts: Vec<MyBoost>,
pub chats: Vec<Chat>,
pub users: Vec<User>,
}Expand description
Generated from:
premium.myBoosts#9ae228e2 my_boosts:Vector<MyBoost> chats:Vector<Chat> users:Vector<User> = premium.MyBoostsFields§
§my_boosts: Vec<MyBoost>§chats: Vec<Chat>§users: Vec<User>Trait Implementations§
Source§impl Deserializable for MyBoosts
impl Deserializable for MyBoosts
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 Identifiable for MyBoosts
impl Identifiable for MyBoosts
Source§const CONSTRUCTOR_ID: u32 = 0x9ae228e2
const CONSTRUCTOR_ID: u32 = 0x9ae228e2
The constructor ID as specified in the TL schema.
Source§impl Serializable for MyBoosts
impl Serializable for MyBoosts
impl StructuralPartialEq for MyBoosts
Auto Trait Implementations§
impl Freeze for MyBoosts
impl RefUnwindSafe for MyBoosts
impl Send for MyBoosts
impl Sync for MyBoosts
impl Unpin for MyBoosts
impl UnsafeUnpin for MyBoosts
impl UnwindSafe for MyBoosts
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