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