[][src]Struct dgraph_rs_http::txn::Txn

pub struct Txn<'a> { /* fields omitted */ }

Methods

impl<'a> Txn<'a>[src]

pub fn new(dc: &DgraphClient) -> Txn[src]

pub fn query(&mut self, q: String) -> Result<Value, Box<dyn Error>>[src]

pub fn query_with_vars(
    &mut self,
    q: String,
    vars: Option<HashMap<String, String>>
) -> Result<Value, Box<dyn Error>>
[src]

pub fn mutation(&mut self, mu: Mutation) -> Result<Assigned, Box<dyn Error>>[src]

pub fn commit(&mut self) -> Result<(), Box<dyn Error>>[src]

pub fn discard(&mut self) -> Result<(), Box<dyn Error>>[src]

Auto Trait Implementations

impl<'a> Send for Txn<'a>

impl<'a> Sync for Txn<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T