Struct ruma::Client

source ·
pub struct Client<C>(_);
Available on crate feature client-ext-client-api only.
Expand description

A client for the Matrix client-server API.

Implementations§

source§

impl Client<()>

source

pub fn builder() -> ClientBuilder

Available on crate feature client only.

Creates a new client builder.

source§

impl<C> Client<C>

source

pub fn access_token(&self) -> Option<String>

Available on crate feature client only.

Get a copy of the current access_token, if any.

Useful for serializing and persisting the session to be restored later.

source§

impl<C> Client<C>where
    C: HttpClient,

source

pub async fn send_request<R>(
    &self,
    request: R
) -> impl Future<Output = Result<<R as OutgoingRequest>::IncomingResponse, Error<<C as HttpClient>::Error, <R as OutgoingRequest>::EndpointError>>>where
    R: OutgoingRequest,

Available on crate feature client only.

Makes a request to a Matrix API endpoint.

source

pub async fn send_customized_request<R, F>(
    &self,
    request: R,
    customize: F
) -> impl Future<Output = Result<<R as OutgoingRequest>::IncomingResponse, Error<<C as HttpClient>::Error, <R as OutgoingRequest>::EndpointError>>>where
    R: OutgoingRequest,
    F: FnOnce(&mut Request<<C as HttpClient>::RequestBody>) -> Result<(), Error<<C as HttpClient>::Error, <R as OutgoingRequest>::EndpointError>>,

Available on crate feature client only.

Makes a request to a Matrix API endpoint including additional URL parameters.

source

pub async fn send_request_as<R>(
    &self,
    user_id: &UserId,
    request: R
) -> impl Future<Output = Result<<R as OutgoingRequest>::IncomingResponse, Error<<C as HttpClient>::Error, <R as OutgoingRequest>::EndpointError>>>where
    R: OutgoingRequest,

Available on crate feature client only.

Makes a request to a Matrix API endpoint as a virtual user.

This method is meant to be used by application services when interacting with the client-server API.

source

pub async fn log_in(
    &self,
    user: &str,
    password: &str,
    device_id: Option<&DeviceId>,
    initial_device_display_name: Option<&str>
) -> impl Future<Output = Result<Response, Error<<C as HttpClient>::Error, Error>>>

Available on crate feature client only.

Log in with a username and password.

In contrast to send_request, this method stores the access token returned by the endpoint in this client, in addition to returning it.

source

pub async fn register_guest(
    &self
) -> impl Future<Output = Result<Response, Error<<C as HttpClient>::Error, UiaaResponse>>>

Available on crate feature client only.

Register as a guest.

In contrast to send_request, this method stores the access token returned by the endpoint in this client, in addition to returning it.

source

pub async fn register_user(
    &self,
    username: Option<&str>,
    password: &str
) -> impl Future<Output = Result<Response, Error<<C as HttpClient>::Error, UiaaResponse>>>

Available on crate feature client only.

Register as a new user on this server.

In contrast to send_request, this method stores the access token returned by the endpoint in this client, in addition to returning it.

The username is the local part of the returned user_id. If it is omitted from this request, the server will generate one.

source

pub fn sync(
    &self,
    filter: Option<Filter>,
    since: String,
    set_presence: PresenceState,
    timeout: Option<Duration>
) -> impl Stream<Item = Result<Response, Error<<C as HttpClient>::Error, Error>>>

Available on crate feature client only.

Convenience method that represents repeated calls to the sync_events endpoint as a stream.

Example:
use std::time::Duration;

let mut sync_stream = Box::pin(client.sync(
    None,
    next_batch_token,
    PresenceState::Online,
    Some(Duration::from_secs(30)),
));
while let Some(response) = sync_stream.try_next().await? {
    // Do something with the data in the response...
}

Trait Implementations§

source§

impl<C> Clone for Client<C>where
    C: Clone,

source§

fn clone(&self) -> Client<C>

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<C> Debug for Client<C>where
    C: Debug,

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<C> RefUnwindSafe for Client<C>where
    C: RefUnwindSafe,

§

impl<C> Send for Client<C>where
    C: Send + Sync,

§

impl<C> Sync for Client<C>where
    C: Send + Sync,

§

impl<C> Unpin for Client<C>

§

impl<C> UnwindSafe for Client<C>where
    C: RefUnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · 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> 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 Twhere
    U: From<T>,

const: unstable · 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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere
    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 Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere
    V: MultiLane<T>,

§

fn vzip(self) -> V

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