[][src]Enum postgres_parser::sys::GrantTargetType

#[repr(u32)]pub enum GrantTargetType {
    ACL_TARGET_OBJECT,
    ACL_TARGET_ALL_IN_SCHEMA,
    ACL_TARGET_DEFAULTS,
}

Grant|Revoke Statement

Variants

ACL_TARGET_OBJECT
ACL_TARGET_ALL_IN_SCHEMA

grant on specific named object(s)

ACL_TARGET_DEFAULTS

grant on all objects in given schema(s)

Trait Implementations

impl Clone for GrantTargetType[src]

impl Copy for GrantTargetType[src]

impl Debug for GrantTargetType[src]

impl<'de> Deserialize<'de> for GrantTargetType[src]

impl Eq for GrantTargetType[src]

impl Hash for GrantTargetType[src]

impl PartialEq<GrantTargetType> for GrantTargetType[src]

impl Serialize for GrantTargetType[src]

impl StructuralEq for GrantTargetType[src]

impl StructuralPartialEq for GrantTargetType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.