[][src]Trait arangoq::arango_api::Remove

pub trait Remove {
    fn remove<Key: Serialize>(&self, key: Key) -> ArangoQuery;
fn remove_with_id<Id: Serialize>(&self, id: Id) -> ArangoQuery; }

Required methods

fn remove<Key: Serialize>(&self, key: Key) -> ArangoQuery

fn remove_with_id<Id: Serialize>(&self, id: Id) -> ArangoQuery

Loading content...

Implementors

impl Remove for Collection[src]

fn remove<Key: Serialize>(&self, key: Key) -> ArangoQuery[src]

This example is not tested
let query = coll.remove("Paul");

fn remove_with_id<Id: Serialize>(&self, id: Id) -> ArangoQuery[src]

This example is not tested
let query = coll.remove_with_id("Beatles/Paul");
Loading content...