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<Privileges> for Privileges
impl PartialEq<Privileges> 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<Privileges> for Privileges
impl PartialOrd<Privileges> 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 more