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 Debug for TransactionStart
impl Debug for TransactionStart
source§impl Hash for TransactionStart
impl Hash for TransactionStart
source§impl PartialEq for TransactionStart
impl PartialEq for TransactionStart
impl Eq for TransactionStart
impl StructuralPartialEq for TransactionStart
Auto Trait Implementations§
impl Freeze for TransactionStart
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.