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