[][src]Struct postgres_parser::nodes::AlterUserMappingStmt

pub struct AlterUserMappingStmt {
    pub user: Option<Box<RoleSpec>>,
    pub servername: Option<String>,
    pub options: Option<Vec<Node>>,
}

Fields

user: Option<Box<RoleSpec>>servername: Option<String>options: Option<Vec<Node>>

Trait Implementations

impl Debug for AlterUserMappingStmt[src]

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

impl Eq for AlterUserMappingStmt[src]

impl PartialEq<AlterUserMappingStmt> for AlterUserMappingStmt[src]

impl Serialize for AlterUserMappingStmt[src]

impl StructuralEq for AlterUserMappingStmt[src]

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