Struct cosmos_sdk_proto::cosmos::distribution::v1beta1::query_client::QueryClient[][src]

pub struct QueryClient<T> { /* fields omitted */ }
This is supported on crate feature grpc only.

Query defines the gRPC querier service for distribution module.

Implementations

impl QueryClient<Channel>[src]

pub async fn connect<D>(dst: D) -> Result<Self, Error> where
    D: TryInto<Endpoint>,
    D::Error: Into<StdError>, 
[src]

Attempt to create a new client by connecting to a given endpoint.

impl<T> QueryClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn params(
    &mut self,
    request: impl IntoRequest<QueryParamsRequest>
) -> Result<Response<QueryParamsResponse>, Status>
[src]

Params queries params of the distribution module.

pub async fn validator_outstanding_rewards(
    &mut self,
    request: impl IntoRequest<QueryValidatorOutstandingRewardsRequest>
) -> Result<Response<QueryValidatorOutstandingRewardsResponse>, Status>
[src]

ValidatorOutstandingRewards queries rewards of a validator address.

pub async fn validator_commission(
    &mut self,
    request: impl IntoRequest<QueryValidatorCommissionRequest>
) -> Result<Response<QueryValidatorCommissionResponse>, Status>
[src]

ValidatorCommission queries accumulated commission for a validator.

pub async fn validator_slashes(
    &mut self,
    request: impl IntoRequest<QueryValidatorSlashesRequest>
) -> Result<Response<QueryValidatorSlashesResponse>, Status>
[src]

ValidatorSlashes queries slash events of a validator.

pub async fn delegation_rewards(
    &mut self,
    request: impl IntoRequest<QueryDelegationRewardsRequest>
) -> Result<Response<QueryDelegationRewardsResponse>, Status>
[src]

DelegationRewards queries the total rewards accrued by a delegation.

pub async fn delegation_total_rewards(
    &mut self,
    request: impl IntoRequest<QueryDelegationTotalRewardsRequest>
) -> Result<Response<QueryDelegationTotalRewardsResponse>, Status>
[src]

DelegationTotalRewards queries the total rewards accrued by a each validator.

pub async fn delegator_validators(
    &mut self,
    request: impl IntoRequest<QueryDelegatorValidatorsRequest>
) -> Result<Response<QueryDelegatorValidatorsResponse>, Status>
[src]

DelegatorValidators queries the validators of a delegator.

pub async fn delegator_withdraw_address(
    &mut self,
    request: impl IntoRequest<QueryDelegatorWithdrawAddressRequest>
) -> Result<Response<QueryDelegatorWithdrawAddressResponse>, Status>
[src]

DelegatorWithdrawAddress queries withdraw address of a delegator.

pub async fn community_pool(
    &mut self,
    request: impl IntoRequest<QueryCommunityPoolRequest>
) -> Result<Response<QueryCommunityPoolResponse>, Status>
[src]

CommunityPool queries the community pool coins.

Trait Implementations

impl<T: Clone> Clone for QueryClient<T>[src]

impl<T> Debug for QueryClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for QueryClient<T>

impl<T> Send for QueryClient<T> where
    T: Send

impl<T> Sync for QueryClient<T> where
    T: Sync

impl<T> Unpin for QueryClient<T> where
    T: Unpin

impl<T> !UnwindSafe for QueryClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

impl<T> WithSubscriber for T[src]