pub struct AccountValue {
pub key: String,
pub value: String,
pub currency: String,
pub account: Option<String>,
}Expand description
Single account value update emitted by the API.
Fields§
§key: StringKey describing the value
value: StringValue corresponding to the key
currency: StringCurrency of the value
account: Option<String>Account ID (optional)
Trait Implementations§
Source§impl ComposeSchema for AccountValue
impl ComposeSchema for AccountValue
Source§impl Debug for AccountValue
impl Debug for AccountValue
Source§impl Default for AccountValue
impl Default for AccountValue
Source§fn default() -> AccountValue
fn default() -> AccountValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountValue
impl<'de> Deserialize<'de> for AccountValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AccountValue
impl Serialize for AccountValue
Auto Trait Implementations§
impl Freeze for AccountValue
impl RefUnwindSafe for AccountValue
impl Send for AccountValue
impl Sync for AccountValue
impl Unpin for AccountValue
impl UnsafeUnpin for AccountValue
impl UnwindSafe for AccountValue
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