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