pub struct CreateStickerSet {
pub masks: bool,
pub emojis: bool,
pub text_color: bool,
pub user_id: InputUser,
pub title: String,
pub short_name: String,
pub thumb: Option<InputDocument>,
pub stickers: Vec<InputStickerSetItem>,
pub software: Option<String>,
}Expand description
Generated from:
stickers.createStickerSet#9021ab67 flags:# masks:flags.0?true emojis:flags.5?true text_color:flags.6?true user_id:InputUser title:string short_name:string thumb:flags.2?InputDocument stickers:Vector<InputStickerSetItem> software:flags.3?string = messages.StickerSetFields§
§masks: bool§emojis: bool§text_color: bool§user_id: InputUser§title: String§short_name: String§thumb: Option<InputDocument>§stickers: Vec<InputStickerSetItem>§software: Option<String>Trait Implementations§
Source§impl Clone for CreateStickerSet
impl Clone for CreateStickerSet
Source§fn clone(&self) -> CreateStickerSet
fn clone(&self) -> CreateStickerSet
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 CreateStickerSet
impl Debug for CreateStickerSet
Source§impl Identifiable for CreateStickerSet
impl Identifiable for CreateStickerSet
Source§const CONSTRUCTOR_ID: u32 = 0x9021ab67
const CONSTRUCTOR_ID: u32 = 0x9021ab67
The constructor ID as specified in the TL schema.
Source§impl PartialEq for CreateStickerSet
impl PartialEq for CreateStickerSet
Source§impl RemoteCall for CreateStickerSet
impl RemoteCall for CreateStickerSet
Source§type Return = StickerSet
type Return = StickerSet
The deserialized response type.
Source§impl Serializable for CreateStickerSet
impl Serializable for CreateStickerSet
impl StructuralPartialEq for CreateStickerSet
Auto Trait Implementations§
impl Freeze for CreateStickerSet
impl RefUnwindSafe for CreateStickerSet
impl Send for CreateStickerSet
impl Sync for CreateStickerSet
impl Unpin for CreateStickerSet
impl UnsafeUnpin for CreateStickerSet
impl UnwindSafe for CreateStickerSet
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