pub struct InlineKeyboardButtonTypeCopyText {
pub text: String,
}Expand description
A button that copies specified text to clipboard
Fields§
§text: StringThe text to copy to clipboard
Trait Implementations§
Source§impl Clone for InlineKeyboardButtonTypeCopyText
impl Clone for InlineKeyboardButtonTypeCopyText
Source§fn clone(&self) -> InlineKeyboardButtonTypeCopyText
fn clone(&self) -> InlineKeyboardButtonTypeCopyText
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 Default for InlineKeyboardButtonTypeCopyText
impl Default for InlineKeyboardButtonTypeCopyText
Source§fn default() -> InlineKeyboardButtonTypeCopyText
fn default() -> InlineKeyboardButtonTypeCopyText
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InlineKeyboardButtonTypeCopyText
impl<'de> Deserialize<'de> for InlineKeyboardButtonTypeCopyText
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
Source§impl PartialEq for InlineKeyboardButtonTypeCopyText
impl PartialEq for InlineKeyboardButtonTypeCopyText
Source§fn eq(&self, other: &InlineKeyboardButtonTypeCopyText) -> bool
fn eq(&self, other: &InlineKeyboardButtonTypeCopyText) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InlineKeyboardButtonTypeCopyText
Auto Trait Implementations§
impl Freeze for InlineKeyboardButtonTypeCopyText
impl RefUnwindSafe for InlineKeyboardButtonTypeCopyText
impl Send for InlineKeyboardButtonTypeCopyText
impl Sync for InlineKeyboardButtonTypeCopyText
impl Unpin for InlineKeyboardButtonTypeCopyText
impl UnsafeUnpin for InlineKeyboardButtonTypeCopyText
impl UnwindSafe for InlineKeyboardButtonTypeCopyText
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