Struct sqlparser_mysql::dds::DropLogfileGroupStatement
source · pub struct DropLogfileGroupStatement {
pub logfile_group: String,
pub engine_name: String,
}
Expand description
parse DROP LOGFILE GROUP logfile_group ENGINE [=] engine_name
Fields§
§logfile_group: String
§engine_name: String
Implementations§
source§impl DropLogfileGroupStatement
impl DropLogfileGroupStatement
pub fn parse( i: &str ) -> IResult<&str, DropLogfileGroupStatement, ParseSQLError<&str>>
Trait Implementations§
source§impl Clone for DropLogfileGroupStatement
impl Clone for DropLogfileGroupStatement
source§fn clone(&self) -> DropLogfileGroupStatement
fn clone(&self) -> DropLogfileGroupStatement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DropLogfileGroupStatement
impl Debug for DropLogfileGroupStatement
source§impl<'de> Deserialize<'de> for DropLogfileGroupStatement
impl<'de> Deserialize<'de> for DropLogfileGroupStatement
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for DropLogfileGroupStatement
impl Display for DropLogfileGroupStatement
source§impl Hash for DropLogfileGroupStatement
impl Hash for DropLogfileGroupStatement
source§impl PartialEq for DropLogfileGroupStatement
impl PartialEq for DropLogfileGroupStatement
source§fn eq(&self, other: &DropLogfileGroupStatement) -> bool
fn eq(&self, other: &DropLogfileGroupStatement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for DropLogfileGroupStatement
impl StructuralPartialEq for DropLogfileGroupStatement
Auto Trait Implementations§
impl Freeze for DropLogfileGroupStatement
impl RefUnwindSafe for DropLogfileGroupStatement
impl Send for DropLogfileGroupStatement
impl Sync for DropLogfileGroupStatement
impl Unpin for DropLogfileGroupStatement
impl UnwindSafe for DropLogfileGroupStatement
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