Struct mwapi::Client

source ·
pub struct Client { /* private fields */ }
Expand description

API Client

Implementations§

source§

impl Client

source

pub fn builder(api_url: &str) -> Builder

Get a Builder instance to further customize the API Client. The API URL should be the absolute path to api.php.

source

pub async fn new(api_url: &str) -> Result<Self>

Get an API Client instance. The API URL should be the absolute path to api.php.

source

pub async fn get_value<P: Into<Params>>(&self, params: P) -> Result<Value>

Same as get(), but return a serde_json::Value

source

pub async fn get<P: Into<Params>, T: DeserializeOwned>( &self, params: P ) -> Result<T>

Make an arbitrary API request using HTTP GET.

source

pub async fn post_with_token<P: Into<Params>, T: DeserializeOwned>( &self, token_type: &str, params: P ) -> Result<T>

Make an API POST request with a CSRF token. The correct token will automatically be fetched, and in case of a bad token error (if it expired), a new one will automatically be fetched and the request retried.

source

pub async fn post<P: Into<Params>, T: DeserializeOwned>( &self, params: P ) -> Result<T>

Make an API POST request

source

pub async fn post_value<P: Into<Params>>(&self, params: P) -> Result<Value>

Same as post(), but return a serde_json::Value

source

pub async fn upload<P: Into<Params>>( &self, filename: &str, path: PathBuf, chunk_size: usize, ignore_warnings: bool, params: P ) -> Result<String>

Available on crate feature upload only.

Upload a file under with the given filename from a path.

  • The chunk_size should be in bytes, 5MB (5_000_000) is a reasonable default if you’re unsure.
  • Warnings will be returned as an error unless ignore_warnings is true.
  • Any extra parameters can be passed in the standard format.
source

pub fn http_client(&self) -> &HttpClient

Get access to the underlying reqwest::Client to make arbitrary GET/POST requests, sharing the connection pool and cookie storage. For example, if you wanted to download images from the wiki.

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Client

source§

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

Formats the value using the given formatter. Read more

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§

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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