pub enum GrantObjects {
AllSequencesInSchema {
schemas: Vec<ObjectName>,
},
AllTablesInSchema {
schemas: Vec<ObjectName>,
},
AllSourcesInSchema {
schemas: Vec<ObjectName>,
},
AllMviewsInSchema {
schemas: Vec<ObjectName>,
},
Databases(Vec<ObjectName>),
Schemas(Vec<ObjectName>),
Sources(Vec<ObjectName>),
Mviews(Vec<ObjectName>),
Sequences(Vec<ObjectName>),
Tables(Vec<ObjectName>),
Sinks(Vec<ObjectName>),
}
Expand description
Objects on which privileges are granted in a GRANT statement.
Variants§
AllSequencesInSchema
Grant privileges on ALL SEQUENCES IN SCHEMA <schema_name> [, ...]
Fields
§
schemas: Vec<ObjectName>
AllTablesInSchema
Grant privileges on ALL TABLES IN SCHEMA <schema_name> [, ...]
Fields
§
schemas: Vec<ObjectName>
AllSourcesInSchema
Grant privileges on ALL SOURCES IN SCHEMA <schema_name> [, ...]
Fields
§
schemas: Vec<ObjectName>
AllMviewsInSchema
Grant privileges on ALL MATERIALIZED VIEWS IN SCHEMA <schema_name> [, ...]
Fields
§
schemas: Vec<ObjectName>
Databases(Vec<ObjectName>)
Grant privileges on specific databases
Schemas(Vec<ObjectName>)
Grant privileges on specific schemas
Sources(Vec<ObjectName>)
Grant privileges on specific sources
Mviews(Vec<ObjectName>)
Grant privileges on specific materialized views
Sequences(Vec<ObjectName>)
Grant privileges on specific sequences
Tables(Vec<ObjectName>)
Grant privileges on specific tables
Sinks(Vec<ObjectName>)
Grant privileges on specific sinks
Trait Implementations§
source§impl Clone for GrantObjects
impl Clone for GrantObjects
source§fn clone(&self) -> GrantObjects
fn clone(&self) -> GrantObjects
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 moresource§impl Debug for GrantObjects
impl Debug for GrantObjects
source§impl Display for GrantObjects
impl Display for GrantObjects
source§impl Hash for GrantObjects
impl Hash for GrantObjects
source§impl PartialEq for GrantObjects
impl PartialEq for GrantObjects
impl Eq for GrantObjects
impl StructuralPartialEq for GrantObjects
Auto Trait Implementations§
impl Freeze for GrantObjects
impl RefUnwindSafe for GrantObjects
impl Send for GrantObjects
impl Sync for GrantObjects
impl Unpin for GrantObjects
impl UnwindSafe for GrantObjects
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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