pub struct Client { /* private fields */ }Implementations
sourceimpl Client
impl Client
pub fn New() -> Self
pub fn Get(&mut self, url: &str) -> HttpResult
pub fn Post(
&mut self,
url: &str,
contentType: &str,
body: Option<Vec<u8>>
) -> HttpResult
pub fn PostForm(&mut self, url: &str, data: Values) -> HttpResult
pub fn Head(&mut self, url: &str) -> HttpResult
pub fn Patch(&mut self, url: &str, body: Option<Vec<u8>>) -> HttpResult
pub fn Put(&mut self, url: &str, body: Option<Vec<u8>>) -> HttpResult
pub fn Delete(&mut self, url: &str) -> HttpResult
pub fn Do(&mut self, req: &mut Request) -> HttpResult
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Client
impl !Send for Client
impl !Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more