Struct ruma_client_api::r0::account::bind_3pid::Request [−][src]
pub struct Request<'a> {
pub client_secret: &'a str,
pub identity_server_info: IdentityServerInfo<'a>,
pub sid: &'a str,
}Expand description
Data for a request to the bind_3pid API endpoint.
Bind a 3PID to a user’s account on an identity server
Fields
client_secret: &'a strClient-generated secret string used to protect this session.
identity_server_info: IdentityServerInfo<'a>The ID server to send the onward request to as a hostname with an appended colon and port number if the port is not the default.
sid: &'a strThe session identifier given by the identity server.
Implementations
pub fn new(
client_secret: &'a str,
identity_server_info: IdentityServerInfo<'a>,
sid: &'a str
) -> Self
pub fn new(
client_secret: &'a str,
identity_server_info: IdentityServerInfo<'a>,
sid: &'a str
) -> SelfCreates a new Request with the given client secret, identity server information and
session identifier.
Trait Implementations
type Incoming = IncomingRequest
type Incoming = IncomingRequestThe ‘Incoming’ variant of Self.
type EndpointError = Error
type EndpointError = ErrorA type capturing the expected error conditions the server can return.
type IncomingResponse = <Response as Outgoing>::Incoming
type IncomingResponse = <Response as Outgoing>::IncomingResponse type returned when the request is successful.
fn try_into_http_request<T: Default + BufMut>(
self,
base_url: &str,
access_token: SendAccessToken<'_>
) -> Result<Request<T>, IntoHttpError>
fn try_into_http_request<T: Default + BufMut>(
self,
base_url: &str,
access_token: SendAccessToken<'_>
) -> Result<Request<T>, IntoHttpError>Tries to convert this request into an http::Request. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for Request<'a>impl<'a> UnwindSafe for Request<'a>Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn try_into_http_request_with_user_id<T>(
self,
base_url: &str,
access_token: SendAccessToken<'_>,
user_id: UserId
) -> Result<Request<T>, IntoHttpError> where
T: Default + BufMut,
fn try_into_http_request_with_user_id<T>(
self,
base_url: &str,
access_token: SendAccessToken<'_>,
user_id: UserId
) -> Result<Request<T>, IntoHttpError> where
T: Default + BufMut, Tries to convert this request into an http::Request and appends a virtual user_id to
assert Appservice identity. Read more