pub struct AlterRoleStatement {
pub name: Name,
pub options: BTreeSet<RoleOpt>,
}
Fields§
§name: Name
§options: BTreeSet<RoleOpt>
Trait Implementations§
Source§impl Clone for AlterRoleStatement
impl Clone for AlterRoleStatement
Source§fn clone(&self) -> AlterRoleStatement
fn clone(&self) -> AlterRoleStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for AlterRoleStatement
impl<'a> CustomToTokens<'a> for AlterRoleStatement
Source§impl Debug for AlterRoleStatement
impl Debug for AlterRoleStatement
Source§impl Display for AlterRoleStatement
impl Display for AlterRoleStatement
Source§impl From<AlterRoleStatement> for RoleStatement
impl From<AlterRoleStatement> for RoleStatement
Source§fn from(original: AlterRoleStatement) -> RoleStatement
fn from(original: AlterRoleStatement) -> RoleStatement
Converts to this type from the input type.
Source§impl From<AlterRoleStatement> for Statement
impl From<AlterRoleStatement> for Statement
Source§fn from(v: AlterRoleStatement) -> Self
fn from(v: AlterRoleStatement) -> Self
Converts to this type from the input type.
Source§impl FromStr for AlterRoleStatement
impl FromStr for AlterRoleStatement
Source§impl Parse for AlterRoleStatement
impl Parse for AlterRoleStatement
type Output = AlterRoleStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for AlterRoleStatement
impl PartialEq for AlterRoleStatement
Source§impl ToTokens for AlterRoleStatement
impl ToTokens for AlterRoleStatement
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Source§impl TryFrom<RoleStatement> for AlterRoleStatement
impl TryFrom<RoleStatement> for AlterRoleStatement
Source§impl TryInto<AlterRoleStatement> for Statement
impl TryInto<AlterRoleStatement> for Statement
impl Eq for AlterRoleStatement
impl StructuralPartialEq for AlterRoleStatement
Auto Trait Implementations§
impl Freeze for AlterRoleStatement
impl RefUnwindSafe for AlterRoleStatement
impl Send for AlterRoleStatement
impl Sync for AlterRoleStatement
impl Unpin for AlterRoleStatement
impl UnwindSafe for AlterRoleStatement
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