pub struct DenyStatement {
pub privileges: Privileges,
pub objects: GrantObjects,
pub grantees: Vec<Grantee>,
pub granted_by: Option<Ident>,
pub cascade: Option<CascadeOption>,
}Expand description
A DENY statement
Fields§
§privileges: Privileges§objects: GrantObjects§grantees: Vec<Grantee>§granted_by: Option<Ident>§cascade: Option<CascadeOption>Trait Implementations§
Source§impl Clone for DenyStatement
impl Clone for DenyStatement
Source§fn clone(&self) -> DenyStatement
fn clone(&self) -> DenyStatement
Returns a duplicate 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 DenyStatement
impl Debug for DenyStatement
Source§impl<'de> Deserialize<'de> for DenyStatement
impl<'de> Deserialize<'de> for DenyStatement
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 DenyStatement
impl Display for DenyStatement
Source§impl From<DenyStatement> for Statement
impl From<DenyStatement> for Statement
Source§fn from(d: DenyStatement) -> Self
fn from(d: DenyStatement) -> Self
Converts to this type from the input type.
Source§impl Hash for DenyStatement
impl Hash for DenyStatement
Source§impl Ord for DenyStatement
impl Ord for DenyStatement
Source§fn cmp(&self, other: &DenyStatement) -> Ordering
fn cmp(&self, other: &DenyStatement) -> 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 DenyStatement
impl PartialEq for DenyStatement
Source§impl PartialOrd for DenyStatement
impl PartialOrd for DenyStatement
Source§impl Serialize for DenyStatement
impl Serialize for DenyStatement
Source§impl Visit for DenyStatement
impl Visit for DenyStatement
Source§impl VisitMut for DenyStatement
impl VisitMut for DenyStatement
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for DenyStatement
impl StructuralPartialEq for DenyStatement
Auto Trait Implementations§
impl Freeze for DenyStatement
impl RefUnwindSafe for DenyStatement
impl Send for DenyStatement
impl Sync for DenyStatement
impl Unpin for DenyStatement
impl UnwindSafe for DenyStatement
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