pub struct CropSeason {
pub name: &'static str,
pub min: i8,
pub max: i8,
}Expand description
Static season definition
Fields§
§name: &'static strName of season
min: i8Max temperature in celsius
max: i8Min temperature in celsius
Auto Trait Implementations§
impl Freeze for CropSeason
impl RefUnwindSafe for CropSeason
impl Send for CropSeason
impl Sync for CropSeason
impl Unpin for CropSeason
impl UnwindSafe for CropSeason
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