Struct botx_api::api::v3::stickers::add_sticker::models::AddStickerResponseResult
source · pub struct AddStickerResponseResult {
pub id: Uuid,
pub emoji: char,
pub link: String,
pub inserted_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub deleted_at: Option<DateTime<Utc>>,
}Expand description
Результат добавления нового стикера в набор стикеров
Fields§
§id: Uuidid стикера
emoji: charЭмодзи стикера
link: StringUrl до картинки стикера
inserted_at: DateTime<Utc>Время создания стикера
updated_at: DateTime<Utc>Время последнего обновления стикера
deleted_at: Option<DateTime<Utc>>Trait Implementations§
source§impl Clone for AddStickerResponseResult
impl Clone for AddStickerResponseResult
source§fn clone(&self) -> AddStickerResponseResult
fn clone(&self) -> AddStickerResponseResult
Returns a copy 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 AddStickerResponseResult
impl Debug for AddStickerResponseResult
source§impl<'de> Deserialize<'de> for AddStickerResponseResult
impl<'de> Deserialize<'de> for AddStickerResponseResult
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 RefUnwindSafe for AddStickerResponseResult
impl Send for AddStickerResponseResult
impl Sync for AddStickerResponseResult
impl Unpin for AddStickerResponseResult
impl UnwindSafe for AddStickerResponseResult
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