Trait SetChatPhotoSetters

Source
pub trait SetChatPhotoSetters: HasPayload<Payload = SetChatPhoto> + Sized {
    // Provided methods
    fn chat_id<T>(self, value: T) -> Self
       where T: Into<Recipient> { ... }
    fn photo(self, value: InputFile) -> Self { ... }
}
Expand description

Setters for fields of SetChatPhoto

Provided Methods§

Source

fn chat_id<T>(self, value: T) -> Self
where T: Into<Recipient>,

Setter for chat_id field.

Source

fn photo(self, value: InputFile) -> Self

Setter for photo field.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<P> SetChatPhotoSetters for P
where P: HasPayload<Payload = SetChatPhoto>,