pub struct ListRolesStatementBuilder { /* private fields */ }
Expand description
Builder for ListRolesStatement
.
Implementations§
Source§impl ListRolesStatementBuilder
impl ListRolesStatementBuilder
pub fn of<VALUE: Into<Name>>(&mut self, value: VALUE) -> &mut Self
pub fn set_no_recursive(&mut self, value: bool) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<ListRolesStatement, ListRolesStatementBuilderError>
pub fn build( &self, ) -> Result<ListRolesStatement, ListRolesStatementBuilderError>
Source§impl ListRolesStatementBuilder
impl ListRolesStatementBuilder
Sourcepub fn no_recursive(&mut self) -> &mut Self
pub fn no_recursive(&mut self) -> &mut Self
Set NO RECURSIVE on the statement.
To undo this, use set_no_recursive(false)
.
Trait Implementations§
Source§impl Clone for ListRolesStatementBuilder
impl Clone for ListRolesStatementBuilder
Source§fn clone(&self) -> ListRolesStatementBuilder
fn clone(&self) -> ListRolesStatementBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ListRolesStatementBuilder
impl RefUnwindSafe for ListRolesStatementBuilder
impl Send for ListRolesStatementBuilder
impl Sync for ListRolesStatementBuilder
impl Unpin for ListRolesStatementBuilder
impl UnwindSafe for ListRolesStatementBuilder
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