pub struct AccountBuilder { /* private fields */ }
Expand description
Builder for Account
.
Implementations§
Source§impl AccountBuilder
impl AccountBuilder
Sourcepub fn encryption_enabled(&mut self, value: bool) -> &mut Self
pub fn encryption_enabled(&mut self, value: bool) -> &mut Self
Indicate if encryption is enabled for the account
Sourcepub fn alias<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn alias<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
An Alias for an account
Sourcepub fn description<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn description<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The description for an account
Labels
Trait Implementations§
Source§impl Clone for AccountBuilder
impl Clone for AccountBuilder
Source§fn clone(&self) -> AccountBuilder
fn clone(&self) -> AccountBuilder
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for AccountBuilder
impl RefUnwindSafe for AccountBuilder
impl Send for AccountBuilder
impl Sync for AccountBuilder
impl Unpin for AccountBuilder
impl UnwindSafe for AccountBuilder
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