pub struct PlatformMakerTierProgress {
pub next_tier: Option<PlatformMakerReputationTier>,
pub reputation_score_required: Option<u16>,
pub reputation_score_remaining: u16,
pub quote_requests_required: Option<String>,
pub quote_requests_remaining: String,
pub stake_atoms_required: Option<String>,
pub stake_atoms_remaining: String,
pub tenure_slots_required: Option<String>,
pub tenure_slots_remaining: String,
}Fields§
§next_tier: Option<PlatformMakerReputationTier>§reputation_score_required: Option<u16>§reputation_score_remaining: u16§quote_requests_required: Option<String>§quote_requests_remaining: String§stake_atoms_required: Option<String>§stake_atoms_remaining: String§tenure_slots_required: Option<String>§tenure_slots_remaining: StringTrait Implementations§
Source§impl Clone for PlatformMakerTierProgress
impl Clone for PlatformMakerTierProgress
Source§fn clone(&self) -> PlatformMakerTierProgress
fn clone(&self) -> PlatformMakerTierProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlatformMakerTierProgress
impl Debug for PlatformMakerTierProgress
Source§impl<'de> Deserialize<'de> for PlatformMakerTierProgress
impl<'de> Deserialize<'de> for PlatformMakerTierProgress
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformMakerTierProgress, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformMakerTierProgress, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlatformMakerTierProgress
Source§impl Serialize for PlatformMakerTierProgress
impl Serialize for PlatformMakerTierProgress
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlatformMakerTierProgress
Auto Trait Implementations§
impl Freeze for PlatformMakerTierProgress
impl RefUnwindSafe for PlatformMakerTierProgress
impl Send for PlatformMakerTierProgress
impl Sync for PlatformMakerTierProgress
impl Unpin for PlatformMakerTierProgress
impl UnsafeUnpin for PlatformMakerTierProgress
impl UnwindSafe for PlatformMakerTierProgress
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