pub struct Client<'a> { /* private fields */ }
Implementations§
Source§impl<'a> Client<'a>
impl<'a> Client<'a>
pub fn new(box_id: &'a str) -> Client<'a>
pub fn with_base_url(self, base_url: &'a str) -> Client<'a>
pub fn create<T>(&self, data: &T) -> Result<(T, Meta)>where
T: Serialize + DeserializeOwned,
pub fn create_bulk<T>(&self, data: &Vec<T>) -> Result<Vec<(T, Meta)>>where
T: Serialize + DeserializeOwned,
pub fn read(&self) -> QueryBuilder<'_>
pub fn update<T>(&self, id: &str, data: &T) -> Result<()>where
T: Serialize,
pub fn delete(&self, id: &str) -> Result<()>
Auto Trait Implementations§
impl<'a> Freeze for Client<'a>
impl<'a> RefUnwindSafe for Client<'a>
impl<'a> Send for Client<'a>
impl<'a> Sync for Client<'a>
impl<'a> Unpin for Client<'a>
impl<'a> UnwindSafe for Client<'a>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more