#[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 get_enabled(&self) -> &Option<bool>
pub fn get_enabled(&self) -> &Option<bool>
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 get_code_hook_specification(&self) -> &Option<CodeHookSpecification>
pub fn get_code_hook_specification(&self) -> &Option<CodeHookSpecification>
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 ==.impl StructuralPartialEq for BotAliasLocaleSettingsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for BotAliasLocaleSettingsBuilder
impl Send for BotAliasLocaleSettingsBuilder
impl Sync for BotAliasLocaleSettingsBuilder
impl Unpin for BotAliasLocaleSettingsBuilder
impl UnwindSafe for BotAliasLocaleSettingsBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more