pub struct CensusIdentity {
pub schema_version: u32,
pub digest: String,
pub shards: Vec<String>,
}Expand description
The stable identity of a reviewed census definition.
Fields§
§schema_version: u32§digest: String§shards: Vec<String>Trait Implementations§
Source§impl Clone for CensusIdentity
impl Clone for CensusIdentity
Source§fn clone(&self) -> CensusIdentity
fn clone(&self) -> CensusIdentity
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 CensusIdentity
impl Debug for CensusIdentity
Source§impl<'de> Deserialize<'de> for CensusIdentity
impl<'de> Deserialize<'de> for CensusIdentity
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
impl Eq for CensusIdentity
Source§impl PartialEq for CensusIdentity
impl PartialEq for CensusIdentity
Source§impl Serialize for CensusIdentity
impl Serialize for CensusIdentity
impl StructuralPartialEq for CensusIdentity
Auto Trait Implementations§
impl Freeze for CensusIdentity
impl RefUnwindSafe for CensusIdentity
impl Send for CensusIdentity
impl Sync for CensusIdentity
impl Unpin for CensusIdentity
impl UnsafeUnpin for CensusIdentity
impl UnwindSafe for CensusIdentity
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