Trait StopMessageLiveLocationInlineSetters

Source
pub trait StopMessageLiveLocationInlineSetters: HasPayload<Payload = StopMessageLiveLocationInline> + Sized {
    // Provided methods
    fn inline_message_id<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn reply_markup<T>(self, value: T) -> Self
       where T: Into<ReplyMarkup> { ... }
}
Expand description

Setters for fields of StopMessageLiveLocationInline

Provided Methods§

Source

fn inline_message_id<T>(self, value: T) -> Self
where T: Into<String>,

Setter for inline_message_id field.

Source

fn reply_markup<T>(self, value: T) -> Self
where T: Into<ReplyMarkup>,

Setter for reply_markup 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§