pub struct TestEntry {
pub name: String,
pub passed: bool,
pub time_us: i64,
pub output: String,
}Fields§
§name: String§passed: bool§time_us: i64§output: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for TestEntry
impl<'de> Deserialize<'de> for TestEntry
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 TestEntry
impl RefUnwindSafe for TestEntry
impl Send for TestEntry
impl Sync for TestEntry
impl Unpin for TestEntry
impl UnsafeUnpin for TestEntry
impl UnwindSafe for TestEntry
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