pub struct AccountMultiValue {
pub account: String,
pub model_code: String,
pub key: String,
pub value: String,
pub currency: String,
}Expand description
Key/value pair returned for a specific account/model code pair.
Fields§
§account: StringAccount ID
model_code: StringModel code
key: StringKey describing the value
value: StringValue corresponding to the key
currency: StringCurrency of the value
Trait Implementations§
Source§impl ComposeSchema for AccountMultiValue
impl ComposeSchema for AccountMultiValue
Source§impl Debug for AccountMultiValue
impl Debug for AccountMultiValue
Source§impl Default for AccountMultiValue
impl Default for AccountMultiValue
Source§fn default() -> AccountMultiValue
fn default() -> AccountMultiValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountMultiValue
impl<'de> Deserialize<'de> for AccountMultiValue
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 PartialEq for AccountMultiValue
impl PartialEq for AccountMultiValue
Source§impl Serialize for AccountMultiValue
impl Serialize for AccountMultiValue
Source§impl ToSchema for AccountMultiValue
impl ToSchema for AccountMultiValue
impl StructuralPartialEq for AccountMultiValue
Auto Trait Implementations§
impl Freeze for AccountMultiValue
impl RefUnwindSafe for AccountMultiValue
impl Send for AccountMultiValue
impl Sync for AccountMultiValue
impl Unpin for AccountMultiValue
impl UnsafeUnpin for AccountMultiValue
impl UnwindSafe for AccountMultiValue
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