pub struct UpdatePendingJoinRequests {
pub peer: Peer,
pub requests_pending: i32,
pub recent_requesters: Vec<i64>,
}Expand description
Generated from:
updatePendingJoinRequests#7063c3db peer:Peer requests_pending:int recent_requesters:Vector<long> = UpdateFields§
§peer: Peer§requests_pending: i32§recent_requesters: Vec<i64>Trait Implementations§
Source§impl Clone for UpdatePendingJoinRequests
impl Clone for UpdatePendingJoinRequests
Source§fn clone(&self) -> UpdatePendingJoinRequests
fn clone(&self) -> UpdatePendingJoinRequests
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 UpdatePendingJoinRequests
impl Debug for UpdatePendingJoinRequests
Source§impl Deserializable for UpdatePendingJoinRequests
impl Deserializable for UpdatePendingJoinRequests
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<UpdatePendingJoinRequests> for Update
impl From<UpdatePendingJoinRequests> for Update
Source§fn from(x: UpdatePendingJoinRequests) -> Self
fn from(x: UpdatePendingJoinRequests) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdatePendingJoinRequests
impl Identifiable for UpdatePendingJoinRequests
Source§const CONSTRUCTOR_ID: u32 = 0x7063c3db
const CONSTRUCTOR_ID: u32 = 0x7063c3db
The constructor ID as specified in the TL schema.
Source§impl TryFrom<Update> for UpdatePendingJoinRequests
impl TryFrom<Update> for UpdatePendingJoinRequests
impl StructuralPartialEq for UpdatePendingJoinRequests
Auto Trait Implementations§
impl Freeze for UpdatePendingJoinRequests
impl RefUnwindSafe for UpdatePendingJoinRequests
impl Send for UpdatePendingJoinRequests
impl Sync for UpdatePendingJoinRequests
impl Unpin for UpdatePendingJoinRequests
impl UnsafeUnpin for UpdatePendingJoinRequests
impl UnwindSafe for UpdatePendingJoinRequests
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