pub struct TaggedAlterRoleStatement {
pub name: Tag<Name>,
pub options: Tag<BTreeSet<RoleOpt>>,
}
Fields§
§name: Tag<Name>
§options: Tag<BTreeSet<RoleOpt>>
Trait Implementations§
Source§impl Clone for TaggedAlterRoleStatement
impl Clone for TaggedAlterRoleStatement
Source§fn clone(&self) -> TaggedAlterRoleStatement
fn clone(&self) -> TaggedAlterRoleStatement
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 TaggedAlterRoleStatement
impl<'a> CustomToTokens<'a> for TaggedAlterRoleStatement
Source§impl Debug for TaggedAlterRoleStatement
impl Debug for TaggedAlterRoleStatement
Source§impl From<TaggedAlterRoleStatement> for TaggedRoleStatement
impl From<TaggedAlterRoleStatement> for TaggedRoleStatement
Source§fn from(original: TaggedAlterRoleStatement) -> TaggedRoleStatement
fn from(original: TaggedAlterRoleStatement) -> TaggedRoleStatement
Converts to this type from the input type.
Source§impl From<TaggedAlterRoleStatement> for TaggedStatement
impl From<TaggedAlterRoleStatement> for TaggedStatement
Source§fn from(v: TaggedAlterRoleStatement) -> Self
fn from(v: TaggedAlterRoleStatement) -> Self
Converts to this type from the input type.
Source§impl FromStr for TaggedAlterRoleStatement
impl FromStr for TaggedAlterRoleStatement
Source§impl Parse for TaggedAlterRoleStatement
impl Parse for TaggedAlterRoleStatement
type Output = TaggedAlterRoleStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedAlterRoleStatement
impl PartialEq for TaggedAlterRoleStatement
Source§fn eq(&self, other: &TaggedAlterRoleStatement) -> bool
fn eq(&self, other: &TaggedAlterRoleStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for TaggedAlterRoleStatement
impl ToTokens for TaggedAlterRoleStatement
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,
impl Eq for TaggedAlterRoleStatement
impl StructuralPartialEq for TaggedAlterRoleStatement
Auto Trait Implementations§
impl Freeze for TaggedAlterRoleStatement
impl RefUnwindSafe for TaggedAlterRoleStatement
impl Send for TaggedAlterRoleStatement
impl Sync for TaggedAlterRoleStatement
impl Unpin for TaggedAlterRoleStatement
impl UnwindSafe for TaggedAlterRoleStatement
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