pub struct Iris {
pub sepal_length: f32,
pub sepal_width: f32,
pub petal_length: f32,
pub petal_width: f32,
pub species: Species,
}Fields§
§sepal_length: f32Length of the sepal in centimeters
sepal_width: f32Width of the sepal in centimeters
petal_length: f32Length of the petal in centimeters
petal_width: f32Width of the petal in centimeters
species: SpeciesIdentified Species of iris
Trait Implementations§
impl StructuralPartialEq for Iris
Auto Trait Implementations§
impl Freeze for Iris
impl RefUnwindSafe for Iris
impl Send for Iris
impl Sync for Iris
impl Unpin for Iris
impl UnwindSafe for Iris
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