pub struct ChatInviteJoinResultWebView {
pub bot_id: i64,
pub webview: WebViewResult,
pub users: Vec<User>,
}Expand description
messages.chatInviteJoinResultWebView
Generated from:
messages.chatInviteJoinResultWebView#2f51c337 bot_id:long webview:WebViewResult users:Vector<User> = messages.ChatInviteJoinResultFields§
§bot_id: i64§webview: WebViewResult§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 = 0x2f51c337
const CONSTRUCTOR_ID: u32 = 0x2f51c337
The constructor ID as specified in the TL schema.
Source§impl PartialEq for ChatInviteJoinResultWebView
impl PartialEq for ChatInviteJoinResultWebView
Source§fn eq(&self, other: &ChatInviteJoinResultWebView) -> bool
fn eq(&self, other: &ChatInviteJoinResultWebView) -> bool
Tests for
self and other values to be equal, and is used by ==.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