pub struct KeyboardButtonUrl {
pub style: Option<KeyboardButtonStyle>,
pub text: String,
pub url: String,
}Expand description
Generated from:
keyboardButtonUrl#d80c25ec flags:# style:flags.10?KeyboardButtonStyle text:string url:string = KeyboardButtonFields§
§style: Option<KeyboardButtonStyle>§text: String§url: StringTrait Implementations§
Source§impl Clone for KeyboardButtonUrl
impl Clone for KeyboardButtonUrl
Source§fn clone(&self) -> KeyboardButtonUrl
fn clone(&self) -> KeyboardButtonUrl
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 KeyboardButtonUrl
impl Debug for KeyboardButtonUrl
Source§impl Deserializable for KeyboardButtonUrl
impl Deserializable for KeyboardButtonUrl
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<KeyboardButtonUrl> for KeyboardButton
impl From<KeyboardButtonUrl> for KeyboardButton
Source§fn from(x: KeyboardButtonUrl) -> Self
fn from(x: KeyboardButtonUrl) -> Self
Converts to this type from the input type.
Source§impl Identifiable for KeyboardButtonUrl
impl Identifiable for KeyboardButtonUrl
Source§const CONSTRUCTOR_ID: u32 = 0xd80c25ec
const CONSTRUCTOR_ID: u32 = 0xd80c25ec
The constructor ID as specified in the TL schema.
Source§impl PartialEq for KeyboardButtonUrl
impl PartialEq for KeyboardButtonUrl
Source§impl Serializable for KeyboardButtonUrl
impl Serializable for KeyboardButtonUrl
Source§impl TryFrom<KeyboardButton> for KeyboardButtonUrl
impl TryFrom<KeyboardButton> for KeyboardButtonUrl
Source§type Error = KeyboardButton
type Error = KeyboardButton
The type returned in the event of a conversion error.
impl StructuralPartialEq for KeyboardButtonUrl
Auto Trait Implementations§
impl Freeze for KeyboardButtonUrl
impl RefUnwindSafe for KeyboardButtonUrl
impl Send for KeyboardButtonUrl
impl Sync for KeyboardButtonUrl
impl Unpin for KeyboardButtonUrl
impl UnsafeUnpin for KeyboardButtonUrl
impl UnwindSafe for KeyboardButtonUrl
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