pub struct CreateNewStickerSetParams {
pub user_id: i64,
pub name: String,
pub title: String,
pub stickers: Vec<InputSticker>,
pub sticker_type: Option<CreateNewStickerSetStickerType>,
pub needs_repainting: bool,
}Fields§
§user_id: i64§name: String§title: String§stickers: Vec<InputSticker>§sticker_type: Option<CreateNewStickerSetStickerType>§needs_repainting: boolTrait Implementations§
Source§impl Clone for CreateNewStickerSetParams
impl Clone for CreateNewStickerSetParams
Source§fn clone(&self) -> CreateNewStickerSetParams
fn clone(&self) -> CreateNewStickerSetParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateNewStickerSetParams
impl Debug for CreateNewStickerSetParams
Auto Trait Implementations§
impl Freeze for CreateNewStickerSetParams
impl RefUnwindSafe for CreateNewStickerSetParams
impl Send for CreateNewStickerSetParams
impl Sync for CreateNewStickerSetParams
impl Unpin for CreateNewStickerSetParams
impl UnsafeUnpin for CreateNewStickerSetParams
impl UnwindSafe for CreateNewStickerSetParams
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