pub struct GatewayBalancesResponse {
pub account: String,
pub obligations: Option<HashMap<String, String>>,
pub balances: Option<HashMap<String, Vec<Amount>>>,
pub assets: Option<HashMap<String, Vec<Amount>>>,
pub ledger_spec: ReturnLedgerSpec,
}
Fields§
§account: String
The address of the account that issued the balances.
obligations: Option<HashMap<String, String>>
§balances: Option<HashMap<String, Vec<Amount>>>
§assets: Option<HashMap<String, Vec<Amount>>>
§ledger_spec: ReturnLedgerSpec
Trait Implementations§
Source§impl Debug for GatewayBalancesResponse
impl Debug for GatewayBalancesResponse
Source§impl<'de> Deserialize<'de> for GatewayBalancesResponse
impl<'de> Deserialize<'de> for GatewayBalancesResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GatewayBalancesResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GatewayBalancesResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GatewayBalancesResponse
impl RefUnwindSafe for GatewayBalancesResponse
impl Send for GatewayBalancesResponse
impl Sync for GatewayBalancesResponse
impl Unpin for GatewayBalancesResponse
impl UnwindSafe for GatewayBalancesResponse
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