pub struct TypeEntry {
pub n_cases: usize,
pub hash: String,
}Expand description
Conformance test data for a single type.
Fields§
§n_cases: usizeNumber of test cases that were hashed together.
hash: StringHex-encoded SHA-256 hash of all committed values concatenated together.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TypeEntry
impl<'de> Deserialize<'de> for TypeEntry
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 TypeEntry
impl RefUnwindSafe for TypeEntry
impl Send for TypeEntry
impl Sync for TypeEntry
impl Unpin for TypeEntry
impl UnwindSafe for TypeEntry
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