Trait teloxide_core::payloads::RevokeChatInviteLinkSetters[][src]

pub trait RevokeChatInviteLinkSetters: HasPayload<Payload = RevokeChatInviteLink> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<ChatId>
, { ... }
fn invite_link<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } }

Setters for fields of RevokeChatInviteLink

Provided methods

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

Setter for chat_id field.

Setter for invite_link field.

Loading content...

Implementors

impl<P> RevokeChatInviteLinkSetters for P where
    P: HasPayload<Payload = RevokeChatInviteLink>, 
[src]

Loading content...