pub enum TaggedDataManipulationStatement {
Select(TaggedSelectStatement),
Insert(TaggedInsertStatement),
Update(TaggedUpdateStatement),
Delete(TaggedDeleteStatement),
Batch(TaggedBatchStatement),
}Variants
Select(TaggedSelectStatement)
Insert(TaggedInsertStatement)
Update(TaggedUpdateStatement)
Delete(TaggedDeleteStatement)
Batch(TaggedBatchStatement)
Trait Implementations
sourceimpl Clone for TaggedDataManipulationStatement
impl Clone for TaggedDataManipulationStatement
sourcefn clone(&self) -> TaggedDataManipulationStatement
fn clone(&self) -> TaggedDataManipulationStatement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> CustomToTokens<'a> for TaggedDataManipulationStatement
impl<'a> CustomToTokens<'a> for TaggedDataManipulationStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl From<TaggedBatchStatement> for TaggedDataManipulationStatement
impl From<TaggedBatchStatement> for TaggedDataManipulationStatement
sourcefn from(original: TaggedBatchStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedBatchStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
sourceimpl From<TaggedDataManipulationStatement> for TaggedStatement
impl From<TaggedDataManipulationStatement> for TaggedStatement
sourcefn from(original: TaggedDataManipulationStatement) -> TaggedStatement
fn from(original: TaggedDataManipulationStatement) -> TaggedStatement
Converts to this type from the input type.
sourceimpl From<TaggedDeleteStatement> for TaggedDataManipulationStatement
impl From<TaggedDeleteStatement> for TaggedDataManipulationStatement
sourcefn from(original: TaggedDeleteStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedDeleteStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
sourceimpl From<TaggedInsertStatement> for TaggedDataManipulationStatement
impl From<TaggedInsertStatement> for TaggedDataManipulationStatement
sourcefn from(original: TaggedInsertStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedInsertStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
sourceimpl From<TaggedSelectStatement> for TaggedDataManipulationStatement
impl From<TaggedSelectStatement> for TaggedDataManipulationStatement
sourcefn from(original: TaggedSelectStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedSelectStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
sourceimpl From<TaggedUpdateStatement> for TaggedDataManipulationStatement
impl From<TaggedUpdateStatement> for TaggedDataManipulationStatement
sourcefn from(original: TaggedUpdateStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedUpdateStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
sourceimpl Parse for TaggedDataManipulationStatement
impl Parse for TaggedDataManipulationStatement
type Output = TaggedDataManipulationStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<TaggedDataManipulationStatement> for TaggedDataManipulationStatement
impl PartialEq<TaggedDataManipulationStatement> for TaggedDataManipulationStatement
sourcefn eq(&self, other: &TaggedDataManipulationStatement) -> bool
fn eq(&self, other: &TaggedDataManipulationStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TaggedDataManipulationStatement) -> bool
fn ne(&self, other: &TaggedDataManipulationStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for TaggedDataManipulationStatement
impl ToTokens for TaggedDataManipulationStatement
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
impl Eq for TaggedDataManipulationStatement
impl StructuralEq for TaggedDataManipulationStatement
impl StructuralPartialEq for TaggedDataManipulationStatement
Auto Trait Implementations
impl RefUnwindSafe for TaggedDataManipulationStatement
impl Send for TaggedDataManipulationStatement
impl Sync for TaggedDataManipulationStatement
impl Unpin for TaggedDataManipulationStatement
impl UnwindSafe for TaggedDataManipulationStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more