pub struct UserBuilder { /* private fields */ }
Expand description
Builder for User
.
Implementations§
Source§impl UserBuilder
impl UserBuilder
Sourcepub fn permissions_boundary(&mut self, value: PermissionsBoundary) -> &mut Self
pub fn permissions_boundary(&mut self, value: PermissionsBoundary) -> &mut Self
Permissions boundary
Sourcepub fn user_name<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn user_name<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Simple name identifying the User.
The list of Tags associated with the User.
pub fn namespace<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Trait Implementations§
Source§impl Clone for UserBuilder
impl Clone for UserBuilder
Source§fn clone(&self) -> UserBuilder
fn clone(&self) -> UserBuilder
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 moreAuto Trait Implementations§
impl Freeze for UserBuilder
impl RefUnwindSafe for UserBuilder
impl Send for UserBuilder
impl Sync for UserBuilder
impl Unpin for UserBuilder
impl UnwindSafe for UserBuilder
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