pub struct StickerPackWithStickerCount {
pub id: Uuid,
pub name: String,
pub public: bool,
pub preview: Option<String>,
pub stickers_count: u32,
pub stickers_order: Vec<Uuid>,
pub inserted_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub deleted_at: Option<DateTime<Utc>>,
}Fields§
§id: Uuidid наборе стикеров
name: StringНазвание наборе стикеров
public: boolПризнак публично доступного наборе
preview: Option<String>Url для превью наборе
stickers_count: u32Стикеры в наборе
stickers_order: Vec<Uuid>Порядок отображения стикеров
inserted_at: DateTime<Utc>Время создания набора
updated_at: DateTime<Utc>Время последнего обновления набора
deleted_at: Option<DateTime<Utc>>Время удаления набора
Trait Implementations§
Source§impl Clone for StickerPackWithStickerCount
impl Clone for StickerPackWithStickerCount
Source§fn clone(&self) -> StickerPackWithStickerCount
fn clone(&self) -> StickerPackWithStickerCount
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 StickerPackWithStickerCount
impl Debug for StickerPackWithStickerCount
Source§impl<'de> Deserialize<'de> for StickerPackWithStickerCount
impl<'de> Deserialize<'de> for StickerPackWithStickerCount
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 StickerPackWithStickerCount
impl RefUnwindSafe for StickerPackWithStickerCount
impl Send for StickerPackWithStickerCount
impl Sync for StickerPackWithStickerCount
impl Unpin for StickerPackWithStickerCount
impl UnwindSafe for StickerPackWithStickerCount
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