pub trait SendInvoiceSetters: HasPayload<Payload = SendInvoice> + Sized {
Show 29 methods
// Provided methods
fn chat_id<T>(self, value: T) -> Self
where T: Into<Recipient> { ... }
fn title<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn description<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn payload<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn currency<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn prices<T>(self, value: T) -> Self
where T: IntoIterator<Item = LabeledPrice> { ... }
fn message_thread_id(self, value: ThreadId) -> Self { ... }
fn provider_token<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn max_tip_amount(self, value: u32) -> Self { ... }
fn suggested_tip_amounts<T>(self, value: T) -> Self
where T: IntoIterator<Item = u32> { ... }
fn start_parameter<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn provider_data<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn photo_url(self, value: Url) -> Self { ... }
fn photo_size(self, value: u32) -> Self { ... }
fn photo_width(self, value: u32) -> Self { ... }
fn photo_height(self, value: u32) -> Self { ... }
fn need_name(self, value: bool) -> Self { ... }
fn need_phone_number(self, value: bool) -> Self { ... }
fn need_email(self, value: bool) -> Self { ... }
fn need_shipping_address(self, value: bool) -> Self { ... }
fn send_phone_number_to_provider(self, value: bool) -> Self { ... }
fn send_email_to_provider(self, value: bool) -> Self { ... }
fn is_flexible(self, value: bool) -> Self { ... }
fn disable_notification(self, value: bool) -> Self { ... }
fn protect_content(self, value: bool) -> Self { ... }
fn allow_paid_broadcast(self, value: bool) -> Self { ... }
fn message_effect_id(self, value: EffectId) -> Self { ... }
fn reply_parameters(self, value: ReplyParameters) -> Self { ... }
fn reply_markup(self, value: InlineKeyboardMarkup) -> Self { ... }
}Expand description
Setters for fields of SendInvoice
Provided Methods§
Sourcefn description<T>(self, value: T) -> Self
fn description<T>(self, value: T) -> Self
Setter for description field.
Sourcefn prices<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = LabeledPrice>,
fn prices<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = LabeledPrice>,
Setter for prices field.
Sourcefn message_thread_id(self, value: ThreadId) -> Self
fn message_thread_id(self, value: ThreadId) -> Self
Setter for message_thread_id field.
Sourcefn provider_token<T>(self, value: T) -> Self
fn provider_token<T>(self, value: T) -> Self
Setter for provider_token field.
Sourcefn max_tip_amount(self, value: u32) -> Self
fn max_tip_amount(self, value: u32) -> Self
Setter for max_tip_amount field.
Sourcefn suggested_tip_amounts<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = u32>,
fn suggested_tip_amounts<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = u32>,
Setter for suggested_tip_amounts field.
Sourcefn start_parameter<T>(self, value: T) -> Self
fn start_parameter<T>(self, value: T) -> Self
Setter for start_parameter field.
Sourcefn provider_data<T>(self, value: T) -> Self
fn provider_data<T>(self, value: T) -> Self
Setter for provider_data field.
Sourcefn photo_size(self, value: u32) -> Self
fn photo_size(self, value: u32) -> Self
Setter for photo_size field.
Sourcefn photo_width(self, value: u32) -> Self
fn photo_width(self, value: u32) -> Self
Setter for photo_width field.
Sourcefn photo_height(self, value: u32) -> Self
fn photo_height(self, value: u32) -> Self
Setter for photo_height field.
Sourcefn need_phone_number(self, value: bool) -> Self
fn need_phone_number(self, value: bool) -> Self
Setter for need_phone_number field.
Sourcefn need_email(self, value: bool) -> Self
fn need_email(self, value: bool) -> Self
Setter for need_email field.
Sourcefn need_shipping_address(self, value: bool) -> Self
fn need_shipping_address(self, value: bool) -> Self
Setter for need_shipping_address field.
Sourcefn send_phone_number_to_provider(self, value: bool) -> Self
fn send_phone_number_to_provider(self, value: bool) -> Self
Setter for send_phone_number_to_provider field.
Sourcefn send_email_to_provider(self, value: bool) -> Self
fn send_email_to_provider(self, value: bool) -> Self
Setter for send_email_to_provider field.
Sourcefn is_flexible(self, value: bool) -> Self
fn is_flexible(self, value: bool) -> Self
Setter for is_flexible field.
Sourcefn disable_notification(self, value: bool) -> Self
fn disable_notification(self, value: bool) -> Self
Setter for disable_notification field.
Sourcefn protect_content(self, value: bool) -> Self
fn protect_content(self, value: bool) -> Self
Setter for protect_content field.
Sourcefn allow_paid_broadcast(self, value: bool) -> Self
fn allow_paid_broadcast(self, value: bool) -> Self
Setter for allow_paid_broadcast field.
Sourcefn message_effect_id(self, value: EffectId) -> Self
fn message_effect_id(self, value: EffectId) -> Self
Setter for message_effect_id field.
Sourcefn reply_parameters(self, value: ReplyParameters) -> Self
fn reply_parameters(self, value: ReplyParameters) -> Self
Setter for reply_parameters field.
Sourcefn reply_markup(self, value: InlineKeyboardMarkup) -> Self
fn reply_markup(self, value: InlineKeyboardMarkup) -> Self
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.