pub enum BotPreparedInlineMessage {
BotPreparedInlineMessage(BotPreparedInlineMessage),
}Expand description
Variants§
BotPreparedInlineMessage(BotPreparedInlineMessage)
Trait Implementations§
Source§impl Clone for BotPreparedInlineMessage
impl Clone for BotPreparedInlineMessage
Source§fn clone(&self) -> BotPreparedInlineMessage
fn clone(&self) -> BotPreparedInlineMessage
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 BotPreparedInlineMessage
impl Debug for BotPreparedInlineMessage
Source§impl Deserializable for BotPreparedInlineMessage
impl Deserializable for BotPreparedInlineMessage
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<BotPreparedInlineMessage> for BotPreparedInlineMessage
impl From<BotPreparedInlineMessage> for BotPreparedInlineMessage
Source§fn from(x: BotPreparedInlineMessage) -> Self
fn from(x: BotPreparedInlineMessage) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BotPreparedInlineMessage
impl PartialEq for BotPreparedInlineMessage
Source§impl TryFrom<BotPreparedInlineMessage> for BotPreparedInlineMessage
impl TryFrom<BotPreparedInlineMessage> for BotPreparedInlineMessage
Source§type Error = BotPreparedInlineMessage
type Error = BotPreparedInlineMessage
The type returned in the event of a conversion error.
impl StructuralPartialEq for BotPreparedInlineMessage
Auto Trait Implementations§
impl Freeze for BotPreparedInlineMessage
impl RefUnwindSafe for BotPreparedInlineMessage
impl Send for BotPreparedInlineMessage
impl Sync for BotPreparedInlineMessage
impl Unpin for BotPreparedInlineMessage
impl UnsafeUnpin for BotPreparedInlineMessage
impl UnwindSafe for BotPreparedInlineMessage
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