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§
Source§impl Clone for TaggedDataManipulationStatement
impl Clone for TaggedDataManipulationStatement
Source§fn clone(&self) -> TaggedDataManipulationStatement
fn clone(&self) -> TaggedDataManipulationStatement
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 TaggedDataManipulationStatement
impl<'a> CustomToTokens<'a> for TaggedDataManipulationStatement
Source§impl From<TaggedBatchStatement> for TaggedDataManipulationStatement
impl From<TaggedBatchStatement> for TaggedDataManipulationStatement
Source§fn from(original: TaggedBatchStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedBatchStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
Source§impl From<TaggedDataManipulationStatement> for TaggedStatement
impl From<TaggedDataManipulationStatement> for TaggedStatement
Source§fn from(original: TaggedDataManipulationStatement) -> TaggedStatement
fn from(original: TaggedDataManipulationStatement) -> TaggedStatement
Converts to this type from the input type.
Source§impl From<TaggedDeleteStatement> for TaggedDataManipulationStatement
impl From<TaggedDeleteStatement> for TaggedDataManipulationStatement
Source§fn from(original: TaggedDeleteStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedDeleteStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
Source§impl From<TaggedInsertStatement> for TaggedDataManipulationStatement
impl From<TaggedInsertStatement> for TaggedDataManipulationStatement
Source§fn from(original: TaggedInsertStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedInsertStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
Source§impl From<TaggedSelectStatement> for TaggedDataManipulationStatement
impl From<TaggedSelectStatement> for TaggedDataManipulationStatement
Source§fn from(original: TaggedSelectStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedSelectStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
Source§impl From<TaggedUpdateStatement> for TaggedDataManipulationStatement
impl From<TaggedUpdateStatement> for TaggedDataManipulationStatement
Source§fn from(original: TaggedUpdateStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedUpdateStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
Source§impl Parse for TaggedDataManipulationStatement
impl Parse for TaggedDataManipulationStatement
type Output = TaggedDataManipulationStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedDataManipulationStatement
impl PartialEq for TaggedDataManipulationStatement
Source§fn eq(&self, other: &TaggedDataManipulationStatement) -> bool
fn eq(&self, other: &TaggedDataManipulationStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for TaggedDataManipulationStatement
impl ToTokens for TaggedDataManipulationStatement
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 TaggedDataManipulationStatement
impl StructuralPartialEq for TaggedDataManipulationStatement
Auto Trait Implementations§
impl Freeze for TaggedDataManipulationStatement
impl RefUnwindSafe for TaggedDataManipulationStatement
impl Send for TaggedDataManipulationStatement
impl Sync for TaggedDataManipulationStatement
impl Unpin for TaggedDataManipulationStatement
impl UnwindSafe for TaggedDataManipulationStatement
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