pub struct MobileClient<T> { /* private fields */ }Implementations§
Source§impl MobileClient<Channel>
impl MobileClient<Channel>
Source§impl<T> MobileClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
impl<T> MobileClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
pub fn with_origin(inner: T, origin: Uri) -> Self
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> MobileClient<InterceptedService<T, F>>where
F: Interceptor,
T::ResponseBody: Default,
T: Service<Request<BoxBody>, Response = Response<<T as GrpcService<BoxBody>>::ResponseBody>>,
<T as Service<Request<BoxBody>>>::Error: Into<StdError> + Send + Sync,
Sourcepub fn send_compressed(self, encoding: CompressionEncoding) -> Self
pub fn send_compressed(self, encoding: CompressionEncoding) -> Self
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
Sourcepub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
pub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
Enable decompressing responses.
Sourcepub fn max_decoding_message_size(self, limit: usize) -> Self
pub fn max_decoding_message_size(self, limit: usize) -> Self
Limits the maximum size of a decoded message.
Default: 4MB
Sourcepub fn max_encoding_message_size(self, limit: usize) -> Self
pub fn max_encoding_message_size(self, limit: usize) -> Self
Limits the maximum size of an encoded message.
Default: usize::MAX
pub async fn attempt_auth( &mut self, request: impl IntoRequest<AttemptAuthRequest>, ) -> Result<Response<AttemptAuthResponse>, Status>
pub async fn validate_auth( &mut self, request: impl IntoRequest<ValidateAuthRequest>, ) -> Result<Response<ValidateAuthResponse>, Status>
pub async fn refresh_auth( &mut self, request: impl IntoRequest<Empty>, ) -> Result<Response<RefreshAuthResponse>, Status>
pub async fn logout( &mut self, request: impl IntoRequest<Empty>, ) -> Result<Response<Empty>, Status>
pub async fn list_stark_pix_keys( &mut self, request: impl IntoRequest<Empty>, ) -> Result<Response<ListStarkPixKeysResponse>, Status>
pub async fn get_pix_limits( &mut self, request: impl IntoRequest<Empty>, ) -> Result<Response<GetPixLimitsResponse>, Status>
pub async fn consult_stark_pix_key( &mut self, request: impl IntoRequest<ConsultStarkPixKeyRequest>, ) -> Result<Response<ConsultStarkPixKeyResponse>, Status>
pub async fn request_stark_pix_outflow( &mut self, request: impl IntoRequest<RequestStarkPixOutflowRequest>, ) -> Result<Response<RequestStarkPixOutflowResponse>, Status>
pub async fn get_stark_pix_outflow_request_status( &mut self, request: impl IntoRequest<GetStarkPixOutflowRequestStatusRequest>, ) -> Result<Response<GetStarkPixOutflowRequestStatusResponse>, Status>
pub async fn load_user_cli( &mut self, request: impl IntoRequest<()>, ) -> Result<Response<LoadUserCliResponse>, Status>
pub async fn balances( &mut self, request: impl IntoRequest<Empty>, ) -> Result<Response<BalancesResponse>, Status>
pub async fn list_pix_transactions( &mut self, request: impl IntoRequest<ListPixTransactionsRequest>, ) -> Result<Response<ListPixTransactionsResponse>, Status>
pub async fn get_pix_transaction( &mut self, request: impl IntoRequest<GetPixTransactionRequest>, ) -> Result<Response<PixTransaction>, Status>
Trait Implementations§
Source§impl<T: Clone> Clone for MobileClient<T>
impl<T: Clone> Clone for MobileClient<T>
Source§fn clone(&self) -> MobileClient<T>
fn clone(&self) -> MobileClient<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> !Freeze for MobileClient<T>
impl<T> RefUnwindSafe for MobileClient<T>where
T: RefUnwindSafe,
impl<T> Send for MobileClient<T>where
T: Send,
impl<T> Sync for MobileClient<T>where
T: Sync,
impl<T> Unpin for MobileClient<T>where
T: Unpin,
impl<T> UnsafeUnpin for MobileClient<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for MobileClient<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request