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 duplicate 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
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