pub struct SignerReputation {
pub signer_id: String,
pub good_count: u32,
pub bad_count: u32,
pub quarantined: bool,
pub quarantine_until: Option<DateTime<Utc>>,
}Fields§
§signer_id: String§good_count: u32§bad_count: u32§quarantined: bool§quarantine_until: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for SignerReputation
impl Clone for SignerReputation
Source§fn clone(&self) -> SignerReputation
fn clone(&self) -> SignerReputation
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 SignerReputation
impl Debug for SignerReputation
Source§impl<'de> Deserialize<'de> for SignerReputation
impl<'de> Deserialize<'de> for SignerReputation
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
Auto Trait Implementations§
impl Freeze for SignerReputation
impl RefUnwindSafe for SignerReputation
impl Send for SignerReputation
impl Sync for SignerReputation
impl Unpin for SignerReputation
impl UnsafeUnpin for SignerReputation
impl UnwindSafe for SignerReputation
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