pub struct StickerPackageInfo {
pub package_id: String,
pub name: String,
pub thumbnail_url: String,
pub author: String,
pub description: String,
pub sticker_count: usize,
pub stickers: Option<Vec<StickerInfo>>,
}Fields§
§package_id: String§name: String§thumbnail_url: String§description: String§sticker_count: usize§stickers: Option<Vec<StickerInfo>>Trait Implementations§
Source§impl Clone for StickerPackageInfo
impl Clone for StickerPackageInfo
Source§fn clone(&self) -> StickerPackageInfo
fn clone(&self) -> StickerPackageInfo
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 StickerPackageInfo
impl Debug for StickerPackageInfo
Source§impl<'de> Deserialize<'de> for StickerPackageInfo
impl<'de> Deserialize<'de> for StickerPackageInfo
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
Auto Trait Implementations§
impl Freeze for StickerPackageInfo
impl RefUnwindSafe for StickerPackageInfo
impl Send for StickerPackageInfo
impl Sync for StickerPackageInfo
impl Unpin for StickerPackageInfo
impl UnsafeUnpin for StickerPackageInfo
impl UnwindSafe for StickerPackageInfo
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