Struct xrpl_api::api::gateway_balances::GatewayBalancesRequest
source · [−]pub struct GatewayBalancesRequest {
pub account: String,
pub hotwallet: Option<Vec<String>>,
pub ledger_hash: Option<String>,
pub ledger_index: Option<String>,
pub strict: Option<bool>,
}Expand description
The gateway_balances command calculates the total balances issued by a given account, optionally excluding amounts held by operational addresses.
-https://xrpl.org/gateway_balances
Fields
account: StringThe address to check. This should be the issuing address.
hotwallet: Option<Vec<String>>An operational address to exclude from the balances issued, or an array of such addresses.
ledger_hash: Option<String>ledger_index: Option<String>strict: Option<bool>Implementations
Trait Implementations
sourceimpl Clone for GatewayBalancesRequest
impl Clone for GatewayBalancesRequest
sourcefn clone(&self) -> GatewayBalancesRequest
fn clone(&self) -> GatewayBalancesRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Default for GatewayBalancesRequest
impl Default for GatewayBalancesRequest
sourcefn default() -> GatewayBalancesRequest
fn default() -> GatewayBalancesRequest
Returns the “default value” for a type. Read more
sourceimpl Request for GatewayBalancesRequest
impl Request for GatewayBalancesRequest
type Response = GatewayBalancesResponse
fn method(&self) -> String
sourceimpl Serialize for GatewayBalancesRequest
impl Serialize for GatewayBalancesRequest
Auto Trait Implementations
impl RefUnwindSafe for GatewayBalancesRequest
impl Send for GatewayBalancesRequest
impl Sync for GatewayBalancesRequest
impl Unpin for GatewayBalancesRequest
impl UnwindSafe for GatewayBalancesRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more