[][src]Struct dgraph_tonic::TxnContext

pub struct TxnContext {
    pub start_ts: u64,
    pub commit_ts: u64,
    pub aborted: bool,
    pub keys: Vec<String>,
    pub preds: Vec<String>,
}

Fields

start_ts: u64commit_ts: u64aborted: boolkeys: Vec<String>

List of keys to be used for conflict detection.

preds: Vec<String>

List of predicates involved in this transaction.

Trait Implementations

impl Clone for TxnContext[src]

impl Debug for TxnContext[src]

impl Default for TxnContext[src]

impl Message for TxnContext[src]

impl PartialEq<TxnContext> for TxnContext[src]

impl StructuralPartialEq for TxnContext[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]