pub struct ChatInviteJoinResultWebView {
pub bot_id: i64,
pub query_id: i64,
pub users: Vec<User>,
}Expand description
messages.chatInviteJoinResultWebView
Generated from:
messages.chatInviteJoinResultWebView#61ca29d3 bot_id:long query_id:long users:Vector<User> = messages.ChatInviteJoinResultFields§
§bot_id: i64§query_id: i64§users: Vec<User>Trait Implementations§
Source§impl Clone for ChatInviteJoinResultWebView
impl Clone for ChatInviteJoinResultWebView
Source§fn clone(&self) -> ChatInviteJoinResultWebView
fn clone(&self) -> ChatInviteJoinResultWebView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ChatInviteJoinResultWebView
impl Debug for ChatInviteJoinResultWebView
Source§impl Deserializable for ChatInviteJoinResultWebView
impl Deserializable for ChatInviteJoinResultWebView
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<ChatInviteJoinResultWebView> for ChatInviteJoinResult
impl From<ChatInviteJoinResultWebView> for ChatInviteJoinResult
Source§fn from(x: ChatInviteJoinResultWebView) -> Self
fn from(x: ChatInviteJoinResultWebView) -> Self
Converts to this type from the input type.
Source§impl Identifiable for ChatInviteJoinResultWebView
impl Identifiable for ChatInviteJoinResultWebView
Source§const CONSTRUCTOR_ID: u32 = 0x61ca29d3
const CONSTRUCTOR_ID: u32 = 0x61ca29d3
The constructor ID as specified in the TL schema.
impl StructuralPartialEq for ChatInviteJoinResultWebView
Source§impl TryFrom<ChatInviteJoinResult> for ChatInviteJoinResultWebView
impl TryFrom<ChatInviteJoinResult> for ChatInviteJoinResultWebView
Source§type Error = ChatInviteJoinResult
type Error = ChatInviteJoinResult
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ChatInviteJoinResultWebView
impl RefUnwindSafe for ChatInviteJoinResultWebView
impl Send for ChatInviteJoinResultWebView
impl Sync for ChatInviteJoinResultWebView
impl Unpin for ChatInviteJoinResultWebView
impl UnsafeUnpin for ChatInviteJoinResultWebView
impl UnwindSafe for ChatInviteJoinResultWebView
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