pub struct ListPermissionsStatementBuilder { /* private fields */ }Expand description
Builder for ListPermissionsStatement.
Implementations
sourceimpl ListPermissionsStatementBuilder
impl ListPermissionsStatementBuilder
pub fn permission<VALUE: Into<PermissionKind>>(
&mut self,
value: VALUE
) -> &mut Self
pub fn resource<VALUE: Into<Resource>>(&mut self, value: VALUE) -> &mut Self
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<ListPermissionsStatement, ListPermissionsStatementBuilderError>
pub fn build(
&self
) -> Result<ListPermissionsStatement, ListPermissionsStatementBuilderError>
sourceimpl ListPermissionsStatementBuilder
impl ListPermissionsStatementBuilder
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
sourceimpl Clone for ListPermissionsStatementBuilder
impl Clone for ListPermissionsStatementBuilder
sourcefn clone(&self) -> ListPermissionsStatementBuilder
fn clone(&self) -> ListPermissionsStatementBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl RefUnwindSafe for ListPermissionsStatementBuilder
impl Send for ListPermissionsStatementBuilder
impl Sync for ListPermissionsStatementBuilder
impl Unpin for ListPermissionsStatementBuilder
impl UnwindSafe for ListPermissionsStatementBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more