pub struct Survey {
pub cave_name: String,
pub name: String,
pub date: NaiveDate,
pub comment: Option<String>,
pub team: String,
pub parameters: Parameters,
pub shots: Vec<Shot>,
}Fields§
§cave_name: String§name: String§date: NaiveDate§comment: Option<String>§team: String§parameters: Parameters§shots: Vec<Shot>Implementations§
Trait Implementations§
impl StructuralPartialEq for Survey
Auto Trait Implementations§
impl Freeze for Survey
impl RefUnwindSafe for Survey
impl Send for Survey
impl Sync for Survey
impl Unpin for Survey
impl UnwindSafe for Survey
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