pub struct AccountNet {
pub free_net_limit: i64,
pub asset_net_used: Vec<AssetNetUsed>,
pub asset_net_limit: Vec<AssetNetLimit>,
pub total_net_limit: i64,
pub total_net_weight: i64,
}
Fields§
§free_net_limit: i64
§asset_net_used: Vec<AssetNetUsed>
§asset_net_limit: Vec<AssetNetLimit>
§total_net_limit: i64
§total_net_weight: i64
Trait Implementations§
Source§impl Clone for AccountNet
impl Clone for AccountNet
Source§fn clone(&self) -> AccountNet
fn clone(&self) -> AccountNet
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AccountNet
impl Debug for AccountNet
Source§impl Default for AccountNet
impl Default for AccountNet
Source§fn default() -> AccountNet
fn default() -> AccountNet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountNet
impl<'de> Deserialize<'de> for AccountNet
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 AccountNet
impl PartialEq for AccountNet
Source§impl Serialize for AccountNet
impl Serialize for AccountNet
impl StructuralPartialEq for AccountNet
Auto Trait Implementations§
impl Freeze for AccountNet
impl RefUnwindSafe for AccountNet
impl Send for AccountNet
impl Sync for AccountNet
impl Unpin for AccountNet
impl UnwindSafe for AccountNet
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