[][src]Struct jsonbox::Client

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

Methods

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

pub fn new(box_id: &'a str) -> Client<'a>[src]

pub fn with_base_url(self, base_url: &'a str) -> Client<'a>[src]

pub fn create<T>(&self, data: &T) -> Result<(T, Meta)> where
    T: Serialize + DeserializeOwned
[src]

pub fn create_bulk<T>(&self, data: &Vec<T>) -> Result<Vec<(T, Meta)>> where
    T: Serialize + DeserializeOwned
[src]

pub fn read(&self) -> QueryBuilder[src]

pub fn update<T>(&self, id: &str, data: &T) -> Result<()> where
    T: Serialize
[src]

pub fn delete(&self, id: &str) -> Result<()>[src]

Auto Trait Implementations

impl<'a> Send for Client<'a>

impl<'a> Unpin for Client<'a>

impl<'a> Sync for Client<'a>

impl<'a> UnwindSafe for Client<'a>

impl<'a> RefUnwindSafe for Client<'a>

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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