pub struct ReplyMarkupInlineKeyboard {
pub rows: Vec<Vec<InlineKeyboardButton>>,
}
Expand description
Contains an inline keyboard layout
Fields§
§rows: Vec<Vec<InlineKeyboardButton>>
A list of rows of inline keyboard buttons
Trait Implementations§
Source§impl Clone for ReplyMarkupInlineKeyboard
impl Clone for ReplyMarkupInlineKeyboard
Source§fn clone(&self) -> ReplyMarkupInlineKeyboard
fn clone(&self) -> ReplyMarkupInlineKeyboard
Returns a copy 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 ReplyMarkupInlineKeyboard
impl Debug for ReplyMarkupInlineKeyboard
Source§impl Default for ReplyMarkupInlineKeyboard
impl Default for ReplyMarkupInlineKeyboard
Source§fn default() -> ReplyMarkupInlineKeyboard
fn default() -> ReplyMarkupInlineKeyboard
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplyMarkupInlineKeyboard
impl<'de> Deserialize<'de> for ReplyMarkupInlineKeyboard
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ReplyMarkupInlineKeyboard
Auto Trait Implementations§
impl Freeze for ReplyMarkupInlineKeyboard
impl RefUnwindSafe for ReplyMarkupInlineKeyboard
impl Send for ReplyMarkupInlineKeyboard
impl Sync for ReplyMarkupInlineKeyboard
impl Unpin for ReplyMarkupInlineKeyboard
impl UnwindSafe for ReplyMarkupInlineKeyboard
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