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