pub struct TaggedBatchStatement {
pub kind: BatchKind,
pub using: Option<Tag<Vec<UpdateParameter>>>,
pub statements: Vec<Tag<TaggedModificationStatement>>,
}
Fields§
§kind: BatchKind
§using: Option<Tag<Vec<UpdateParameter>>>
§statements: Vec<Tag<TaggedModificationStatement>>
Trait Implementations§
Source§impl Clone for TaggedBatchStatement
impl Clone for TaggedBatchStatement
Source§fn clone(&self) -> TaggedBatchStatement
fn clone(&self) -> TaggedBatchStatement
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 TaggedBatchStatement
impl<'a> CustomToTokens<'a> for TaggedBatchStatement
Source§impl Debug for TaggedBatchStatement
impl Debug for TaggedBatchStatement
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<TaggedBatchStatement> for TaggedStatement
impl From<TaggedBatchStatement> for TaggedStatement
Source§fn from(v: TaggedBatchStatement) -> Self
fn from(v: TaggedBatchStatement) -> Self
Converts to this type from the input type.
Source§impl FromStr for TaggedBatchStatement
impl FromStr for TaggedBatchStatement
Source§impl Parse for TaggedBatchStatement
impl Parse for TaggedBatchStatement
type Output = TaggedBatchStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedBatchStatement
impl PartialEq for TaggedBatchStatement
Source§impl ToTokens for TaggedBatchStatement
impl ToTokens for TaggedBatchStatement
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,
Source§impl TryFrom<TaggedBatchStatement> for BatchStatement
impl TryFrom<TaggedBatchStatement> for BatchStatement
impl Eq for TaggedBatchStatement
impl StructuralPartialEq for TaggedBatchStatement
Auto Trait Implementations§
impl Freeze for TaggedBatchStatement
impl RefUnwindSafe for TaggedBatchStatement
impl Send for TaggedBatchStatement
impl Sync for TaggedBatchStatement
impl Unpin for TaggedBatchStatement
impl UnwindSafe for TaggedBatchStatement
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