Struct datafusion_expr::logical_plan::TransactionStart
source · pub struct TransactionStart {
pub access_mode: TransactionAccessMode,
pub isolation_level: TransactionIsolationLevel,
pub schema: DFSchemaRef,
}
Expand description
Indicator that the following statements should be committed or rolled back atomically
Fields§
§access_mode: TransactionAccessMode
indicates if transaction is allowed to write
isolation_level: TransactionIsolationLevel
§schema: DFSchemaRef
Empty schema
Trait Implementations§
source§impl Clone for TransactionStart
impl Clone for TransactionStart
source§fn clone(&self) -> TransactionStart
fn clone(&self) -> TransactionStart
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Hash for TransactionStart
impl Hash for TransactionStart
source§impl PartialEq<TransactionStart> for TransactionStart
impl PartialEq<TransactionStart> for TransactionStart
source§fn eq(&self, other: &TransactionStart) -> bool
fn eq(&self, other: &TransactionStart) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TransactionStart
impl StructuralEq for TransactionStart
impl StructuralPartialEq for TransactionStart
Auto Trait Implementations§
impl RefUnwindSafe for TransactionStart
impl Send for TransactionStart
impl Sync for TransactionStart
impl Unpin for TransactionStart
impl UnwindSafe for TransactionStart
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.