Enum sqlparser::ast::Privileges
source · pub enum Privileges {
All {
with_privileges_keyword: bool,
},
Actions(Vec<Action>),
}
Expand description
Privileges granted in a GRANT statement or revoked in a REVOKE statement.
Variants§
All
All privileges applicable to the object type
Actions(Vec<Action>)
Specific privileges (e.g. SELECT
, INSERT
)
Trait Implementations§
source§impl Clone for Privileges
impl Clone for Privileges
source§fn clone(&self) -> Privileges
fn clone(&self) -> Privileges
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 Privileges
impl Debug for Privileges
source§impl<'de> Deserialize<'de> for Privileges
impl<'de> Deserialize<'de> for Privileges
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for Privileges
impl Display for Privileges
source§impl Hash for Privileges
impl Hash for Privileges
source§impl Ord for Privileges
impl Ord for Privileges
source§fn cmp(&self, other: &Privileges) -> Ordering
fn cmp(&self, other: &Privileges) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for Privileges
impl PartialEq for Privileges
source§fn eq(&self, other: &Privileges) -> bool
fn eq(&self, other: &Privileges) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for Privileges
impl PartialOrd for Privileges
source§fn partial_cmp(&self, other: &Privileges) -> Option<Ordering>
fn partial_cmp(&self, other: &Privileges) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for Privileges
impl Serialize for Privileges
source§impl Visit for Privileges
impl Visit for Privileges
source§impl VisitMut for Privileges
impl VisitMut for Privileges
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for Privileges
impl StructuralPartialEq for Privileges
Auto Trait Implementations§
impl Freeze for Privileges
impl RefUnwindSafe for Privileges
impl Send for Privileges
impl Sync for Privileges
impl Unpin for Privileges
impl UnwindSafe for Privileges
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)