[][src]Struct actix_telegram::methods::DeleteStickerFromSet

pub struct DeleteStickerFromSet { /* fields omitted */ }

Use this method to delete a sticker from a set created by the bot. Returns True on success.

Methods

impl DeleteStickerFromSet[src]

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

File identifier of the sticker

impl DeleteStickerFromSet[src]

pub fn new(sticker: impl Into<String>) -> Self[src]

Trait Implementations

impl Debug for DeleteStickerFromSet[src]

impl Handler<DeleteStickerFromSet> for TelegramApi[src]

type Result = Box<dyn Future<Item = True, Error = Error>>

The type of value that this handle will return

impl Message for DeleteStickerFromSet[src]

type Result = Result<True, Error>

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

impl Serialize for DeleteStickerFromSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Erased for T