pub struct Found {
pub my_results: Vec<Peer>,
pub results: Vec<Peer>,
pub chats: Vec<Chat>,
pub users: Vec<User>,
}Expand description
Generated from:
contacts.found#b3134d9d my_results:Vector<Peer> results:Vector<Peer> chats:Vector<Chat> users:Vector<User> = contacts.FoundFields§
§my_results: Vec<Peer>§results: Vec<Peer>§chats: Vec<Chat>§users: Vec<User>Trait Implementations§
Source§impl Deserializable for Found
impl Deserializable for Found
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 Found
impl Identifiable for Found
Source§const CONSTRUCTOR_ID: u32 = 0xb3134d9d
const CONSTRUCTOR_ID: u32 = 0xb3134d9d
The constructor ID as specified in the TL schema.
Source§impl Serializable for Found
impl Serializable for Found
impl StructuralPartialEq for Found
Auto Trait Implementations§
impl Freeze for Found
impl RefUnwindSafe for Found
impl Send for Found
impl Sync for Found
impl Unpin for Found
impl UnsafeUnpin for Found
impl UnwindSafe for Found
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