#[non_exhaustive]pub struct StickerList {
pub value: HashMap<String, String>,
}Expand description
Response to the sticker list command.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.value: HashMap<String, String>A map of sticker names to their values
Trait Implementations§
Source§impl Clone for StickerList
impl Clone for StickerList
Source§fn clone(&self) -> StickerList
fn clone(&self) -> StickerList
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 StickerList
impl Debug for StickerList
Source§impl From<StickerList> for HashMap<String, String>
impl From<StickerList> for HashMap<String, String>
Source§fn from(sticker_list: StickerList) -> Self
fn from(sticker_list: StickerList) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StickerList
impl PartialEq for StickerList
impl Eq for StickerList
impl StructuralPartialEq for StickerList
Auto Trait Implementations§
impl Freeze for StickerList
impl RefUnwindSafe for StickerList
impl Send for StickerList
impl Sync for StickerList
impl Unpin for StickerList
impl UnwindSafe for StickerList
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