pub struct StakingPersonalLeftQuotaResponseItem {
pub left_personal_quota: String,
}
Expand description
StakingPersonalLeftQuotaResponseItem
JSON schema
{
"type": "object",
"required": [
"leftPersonalQuota"
],
"properties": {
"leftPersonalQuota": {
"examples": [
"1000"
],
"type": "string"
}
}
}
Fields§
§left_personal_quota: String
Trait Implementations§
Source§impl Clone for StakingPersonalLeftQuotaResponseItem
impl Clone for StakingPersonalLeftQuotaResponseItem
Source§fn clone(&self) -> StakingPersonalLeftQuotaResponseItem
fn clone(&self) -> StakingPersonalLeftQuotaResponseItem
Returns a duplicate 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<'de> Deserialize<'de> for StakingPersonalLeftQuotaResponseItem
impl<'de> Deserialize<'de> for StakingPersonalLeftQuotaResponseItem
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 From<&StakingPersonalLeftQuotaResponseItem> for StakingPersonalLeftQuotaResponseItem
impl From<&StakingPersonalLeftQuotaResponseItem> for StakingPersonalLeftQuotaResponseItem
Source§fn from(value: &StakingPersonalLeftQuotaResponseItem) -> Self
fn from(value: &StakingPersonalLeftQuotaResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StakingPersonalLeftQuotaResponseItem
impl RefUnwindSafe for StakingPersonalLeftQuotaResponseItem
impl Send for StakingPersonalLeftQuotaResponseItem
impl Sync for StakingPersonalLeftQuotaResponseItem
impl Unpin for StakingPersonalLeftQuotaResponseItem
impl UnwindSafe for StakingPersonalLeftQuotaResponseItem
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