#[non_exhaustive]pub struct BotAliasLocaleSettingsBuilder { /* private fields */ }Expand description
A builder for BotAliasLocaleSettings.
Implementations§
source§impl BotAliasLocaleSettingsBuilder
impl BotAliasLocaleSettingsBuilder
sourcepub fn enabled(self, input: bool) -> Self
pub fn enabled(self, input: bool) -> Self
Determines whether the locale is enabled for the bot. If the value is false, the locale isn't available for use.
sourcepub fn set_enabled(self, input: Option<bool>) -> Self
pub fn set_enabled(self, input: Option<bool>) -> Self
Determines whether the locale is enabled for the bot. If the value is false, the locale isn't available for use.
sourcepub fn code_hook_specification(self, input: CodeHookSpecification) -> Self
pub fn code_hook_specification(self, input: CodeHookSpecification) -> Self
Specifies the Lambda function that should be used in the locale.
sourcepub fn set_code_hook_specification(
self,
input: Option<CodeHookSpecification>
) -> Self
pub fn set_code_hook_specification( self, input: Option<CodeHookSpecification> ) -> Self
Specifies the Lambda function that should be used in the locale.
sourcepub fn build(self) -> BotAliasLocaleSettings
pub fn build(self) -> BotAliasLocaleSettings
Consumes the builder and constructs a BotAliasLocaleSettings.
Trait Implementations§
source§impl Clone for BotAliasLocaleSettingsBuilder
impl Clone for BotAliasLocaleSettingsBuilder
source§fn clone(&self) -> BotAliasLocaleSettingsBuilder
fn clone(&self) -> BotAliasLocaleSettingsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for BotAliasLocaleSettingsBuilder
impl Default for BotAliasLocaleSettingsBuilder
source§fn default() -> BotAliasLocaleSettingsBuilder
fn default() -> BotAliasLocaleSettingsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<BotAliasLocaleSettingsBuilder> for BotAliasLocaleSettingsBuilder
impl PartialEq<BotAliasLocaleSettingsBuilder> for BotAliasLocaleSettingsBuilder
source§fn eq(&self, other: &BotAliasLocaleSettingsBuilder) -> bool
fn eq(&self, other: &BotAliasLocaleSettingsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.