Struct Http

Source
pub struct Http {
    pub url: String,
    pub query: String,
    /* private fields */
}

Fields§

§url: String§query: String

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_javascript(&mut self, data: &str) -> &mut Self

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 raw_stream(&mut self, data: Vec<u8>) -> &mut Self

Source

pub fn raw_binary(&mut self, data: Vec<u8>, content_type: &str) -> &mut Self

Source

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

返回 html

Source

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

返回 JSON

Source

pub fn info( &mut self, ) -> Result<(u16, String, HashMap<String, String>, HashMap<String, String>), String>

返回 info

Source

pub fn stream(&mut self) -> Result<Vec<u8>, String>

Trait Implementations§

Source§

impl Debug for Http

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for Http

Source§

fn default() -> Self

Returns the “default value” for a type. 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>,

Source§

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>,

Source§

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
Source§

impl<T> ErasedDestructor for T
where T: 'static,