pub enum GrantOperation {
Grant {
grant: Grant,
},
Revoke {
grant: Grant,
},
GrantColumns(ColumnGrants),
RevokeColumns(ColumnGrants),
}Variants§
Grant
Revoke
GrantColumns(ColumnGrants)
A set of column-level grants on one relation, folded into a single
statement (GRANT SELECT (a, b), UPDATE (a) ON t TO role). Produced by
the column-grant coalescing pass; see crate::diff::grants::coalesce_column_grants.
RevokeColumns(ColumnGrants)
The REVOKE counterpart of GrantOperation::GrantColumns.
Implementations§
Source§impl GrantOperation
impl GrantOperation
pub fn operation_kind(&self) -> OperationKind
Trait Implementations§
Source§impl Clone for GrantOperation
impl Clone for GrantOperation
Source§fn clone(&self) -> GrantOperation
fn clone(&self) -> GrantOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GrantOperation
impl Debug for GrantOperation
Source§impl SqlRenderer for GrantOperation
impl SqlRenderer for GrantOperation
fn to_sql(&self) -> Vec<RenderedSql>
fn db_object_id(&self) -> DbObjectId
Auto Trait Implementations§
impl Freeze for GrantOperation
impl RefUnwindSafe for GrantOperation
impl Send for GrantOperation
impl Sync for GrantOperation
impl Unpin for GrantOperation
impl UnsafeUnpin for GrantOperation
impl UnwindSafe for GrantOperation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more