Struct br_http::Http

source ·
pub struct Http { /* private fields */ }

Implementations§

source§

impl Http

source

pub fn new() -> Http

source

pub fn set_read_timeout(&mut self, secs: u64) -> &mut Self

source

pub fn set_write_timeout(&mut self, secs: u64) -> &mut Self

source

pub fn debug(&mut self, open: bool) -> &mut Self

调试

source

pub fn get(&mut self, url: &str) -> &mut Self

GET请求

source

pub fn post(&mut self, url: &str) -> &mut Http

POST请求

source

pub fn options(&mut self, url: &str) -> &mut Http

source

pub fn put(&mut self, url: &str) -> &mut Http

source

pub fn patch(&mut self, url: &str) -> &mut Http

source

pub fn head(&mut self, url: &str) -> &mut Http

source

pub fn delete(&mut self, url: &str) -> &mut Http

source

pub fn header(&mut self, key: &str, value: &str) -> &mut Http

source

pub fn bearer_auth(&mut self, token: &str) -> &mut Http

bearer 登陆头

source

pub fn cookie(&mut self, key: &str, value: &str) -> &mut Http

source

pub fn query(&mut self, data: JsonValue) -> &mut Self

query 请求地址参数

source

pub fn form_data(&mut self, data: Vec<FormData>) -> &mut Self

form-data 数据类型

source

pub fn form_urlencoded(&mut self, data: JsonValue) -> &mut Self

form-urlencoded 数据类型

source

pub fn raw_json(&mut self, data: JsonValue) -> &mut Self

json 数据类型

source

pub fn raw_xml(&mut self, data: &str) -> &mut Self

source

pub fn raw_html(&mut self, data: &str) -> &mut Self

source

pub fn raw_text(&mut self, data: &str) -> &mut Self

source

pub fn cookies(&mut self) -> Result<JsonValue, String>

source

pub fn text(&mut self) -> Result<String, String>

返回 text

source

pub fn json(&mut self) -> Result<JsonValue, String>

返回 JSON

source

pub fn info(&mut self) -> Result<(u16, &'static str, String), String>

返回 info

Trait Implementations§

source§

impl Debug for Http

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Http

§

impl !RefUnwindSafe for Http

§

impl Send for Http

§

impl !Sync for Http

§

impl Unpin for Http

§

impl !UnwindSafe for Http

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more