pub struct RecentMeUrlChat {
pub url: String,
pub chat_id: i64,
}Expand description
Fields§
§url: String§chat_id: i64Trait Implementations§
Source§impl Clone for RecentMeUrlChat
impl Clone for RecentMeUrlChat
Source§fn clone(&self) -> RecentMeUrlChat
fn clone(&self) -> RecentMeUrlChat
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 RecentMeUrlChat
impl Debug for RecentMeUrlChat
Source§impl Deserializable for RecentMeUrlChat
impl Deserializable for RecentMeUrlChat
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<RecentMeUrlChat> for RecentMeUrl
impl From<RecentMeUrlChat> for RecentMeUrl
Source§fn from(x: RecentMeUrlChat) -> Self
fn from(x: RecentMeUrlChat) -> Self
Converts to this type from the input type.
Source§impl Identifiable for RecentMeUrlChat
impl Identifiable for RecentMeUrlChat
Source§const CONSTRUCTOR_ID: u32 = 0xb2da71d2
const CONSTRUCTOR_ID: u32 = 0xb2da71d2
The constructor ID as specified in the TL schema.
Source§impl PartialEq for RecentMeUrlChat
impl PartialEq for RecentMeUrlChat
Source§impl Serializable for RecentMeUrlChat
impl Serializable for RecentMeUrlChat
Source§impl TryFrom<RecentMeUrl> for RecentMeUrlChat
impl TryFrom<RecentMeUrl> for RecentMeUrlChat
Source§type Error = RecentMeUrl
type Error = RecentMeUrl
The type returned in the event of a conversion error.
impl StructuralPartialEq for RecentMeUrlChat
Auto Trait Implementations§
impl Freeze for RecentMeUrlChat
impl RefUnwindSafe for RecentMeUrlChat
impl Send for RecentMeUrlChat
impl Sync for RecentMeUrlChat
impl Unpin for RecentMeUrlChat
impl UnsafeUnpin for RecentMeUrlChat
impl UnwindSafe for RecentMeUrlChat
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