pub struct DropRoleStatement {
pub if_exists: bool,
pub name: Name,
}
Fields§
§if_exists: bool
§name: Name
Trait Implementations§
Source§impl Clone for DropRoleStatement
impl Clone for DropRoleStatement
Source§fn clone(&self) -> DropRoleStatement
fn clone(&self) -> DropRoleStatement
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 DropRoleStatement
impl<'a> CustomToTokens<'a> for DropRoleStatement
Source§impl Debug for DropRoleStatement
impl Debug for DropRoleStatement
Source§impl Display for DropRoleStatement
impl Display for DropRoleStatement
Source§impl From<DropRoleStatement> for RoleStatement
impl From<DropRoleStatement> for RoleStatement
Source§fn from(original: DropRoleStatement) -> RoleStatement
fn from(original: DropRoleStatement) -> RoleStatement
Converts to this type from the input type.
Source§impl From<DropRoleStatement> for Statement
impl From<DropRoleStatement> for Statement
Source§fn from(v: DropRoleStatement) -> Self
fn from(v: DropRoleStatement) -> Self
Converts to this type from the input type.
Source§impl FromStr for DropRoleStatement
impl FromStr for DropRoleStatement
Source§impl Parse for DropRoleStatement
impl Parse for DropRoleStatement
type Output = DropRoleStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for DropRoleStatement
impl PartialEq for DropRoleStatement
Source§impl ToTokens for DropRoleStatement
impl ToTokens for DropRoleStatement
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 DropRoleStatement
impl TryFrom<RoleStatement> for DropRoleStatement
Source§impl TryInto<DropRoleStatement> for Statement
impl TryInto<DropRoleStatement> for Statement
impl Eq for DropRoleStatement
impl StructuralPartialEq for DropRoleStatement
Auto Trait Implementations§
impl Freeze for DropRoleStatement
impl RefUnwindSafe for DropRoleStatement
impl Send for DropRoleStatement
impl Sync for DropRoleStatement
impl Unpin for DropRoleStatement
impl UnwindSafe for DropRoleStatement
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