pub struct DeepLinkInfo {
pub update_app: bool,
pub message: String,
pub entities: Option<Vec<MessageEntity>>,
}Expand description
Generated from:
help.deepLinkInfo#6a4ee832 flags:# update_app:flags.0?true message:string entities:flags.1?Vector<MessageEntity> = help.DeepLinkInfoFields§
§update_app: bool§message: String§entities: Option<Vec<MessageEntity>>Trait Implementations§
Source§impl Clone for DeepLinkInfo
impl Clone for DeepLinkInfo
Source§fn clone(&self) -> DeepLinkInfo
fn clone(&self) -> DeepLinkInfo
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 DeepLinkInfo
impl Debug for DeepLinkInfo
Source§impl Deserializable for DeepLinkInfo
impl Deserializable for DeepLinkInfo
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<DeepLinkInfo> for DeepLinkInfo
impl From<DeepLinkInfo> for DeepLinkInfo
Source§fn from(x: DeepLinkInfo) -> Self
fn from(x: DeepLinkInfo) -> Self
Converts to this type from the input type.
Source§impl Identifiable for DeepLinkInfo
impl Identifiable for DeepLinkInfo
Source§const CONSTRUCTOR_ID: u32 = 0x6a4ee832
const CONSTRUCTOR_ID: u32 = 0x6a4ee832
The constructor ID as specified in the TL schema.
Source§impl PartialEq for DeepLinkInfo
impl PartialEq for DeepLinkInfo
Source§impl Serializable for DeepLinkInfo
impl Serializable for DeepLinkInfo
Source§impl TryFrom<DeepLinkInfo> for DeepLinkInfo
impl TryFrom<DeepLinkInfo> for DeepLinkInfo
Source§type Error = DeepLinkInfo
type Error = DeepLinkInfo
The type returned in the event of a conversion error.
impl StructuralPartialEq for DeepLinkInfo
Auto Trait Implementations§
impl Freeze for DeepLinkInfo
impl RefUnwindSafe for DeepLinkInfo
impl Send for DeepLinkInfo
impl Sync for DeepLinkInfo
impl Unpin for DeepLinkInfo
impl UnsafeUnpin for DeepLinkInfo
impl UnwindSafe for DeepLinkInfo
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