[][src]Enum postgres_parser::sys::RoleSpecType

#[repr(u32)]pub enum RoleSpecType {
    ROLESPEC_CSTRING,
    ROLESPEC_CURRENT_USER,
    ROLESPEC_SESSION_USER,
    ROLESPEC_PUBLIC,
}

RoleSpec a role name or one of a few special values.

Variants

ROLESPEC_CSTRING
ROLESPEC_CURRENT_USER

role name is stored as a C string

ROLESPEC_SESSION_USER

role spec is CURRENT_USER

ROLESPEC_PUBLIC

role spec is SESSION_USER

Trait Implementations

impl Clone for RoleSpecType[src]

impl Copy for RoleSpecType[src]

impl Debug for RoleSpecType[src]

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

impl Eq for RoleSpecType[src]

impl Hash for RoleSpecType[src]

impl PartialEq<RoleSpecType> for RoleSpecType[src]

impl Serialize for RoleSpecType[src]

impl StructuralEq for RoleSpecType[src]

impl StructuralPartialEq for RoleSpecType[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.