pub enum LabResult {
None,
GrainSize {
grain_mm: ParseResult<f32>,
pass_percent: ParseResult<f32>,
},
WaterContent {
water_content: ParseResult<f32>,
},
Other {
attribute: ParseResult<String>,
result: ParseResult<String>,
unit: ParseResult<String>,
},
}Variants§
Trait Implementations§
Source§impl PartialOrd for LabResult
impl PartialOrd for LabResult
impl StructuralPartialEq for LabResult
Auto Trait Implementations§
impl Freeze for LabResult
impl RefUnwindSafe for LabResult
impl Send for LabResult
impl Sync for LabResult
impl Unpin for LabResult
impl UnwindSafe for LabResult
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