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