[][src]Struct actix_telegram::methods::UploadStickerFile

pub struct UploadStickerFile { /* fields omitted */ }

Use this method to upload a .png file with a sticker for later use in createNewStickerSet and addStickerToSet methods (can be used multiple times). Returns the uploaded File on success.

Methods

impl UploadStickerFile
[src]

pub fn set_user_id<__T: Into<Integer>>(&mut self, val: __T) -> &mut Self
[src]

User identifier of sticker file owner

pub fn set_png_sticker<__T: Into<InputFile>>(&mut self, val: __T) -> &mut Self
[src]

Png image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. More info on Sending Files »

impl UploadStickerFile
[src]

pub fn new(
    user_id: impl Into<Integer>,
    png_sticker: impl Into<InputFile>
) -> Self
[src]

Trait Implementations

impl Debug for UploadStickerFile
[src]

impl Message for UploadStickerFile
[src]

type Result = Result<File, ()>

The type of value that this message will resolved with if it is successful. Read more

impl Handler<UploadStickerFile> for TelegramApi
[src]

type Result = Box<dyn Future<Item = File, Error = ()>>

The type of value that this handle will return

impl Serialize for UploadStickerFile
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T