Trait teloxide_core::payloads::UnpinChatMessageSetters[][src]

pub trait UnpinChatMessageSetters: HasPayload<Payload = UnpinChatMessage> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<ChatId>
, { ... }
fn message_id(self, value: i32) -> Self { ... } }

Setters for fields of UnpinChatMessage

Provided methods

fn chat_id<T>(self, value: T) -> Self where
    T: Into<ChatId>, 
[src]

Setter for chat_id field.

fn message_id(self, value: i32) -> Self[src]

Setter for message_id field.

Loading content...

Implementors

impl<P> UnpinChatMessageSetters for P where
    P: HasPayload<Payload = UnpinChatMessage>, 
[src]

Loading content...