pub struct AutopsyReport {
pub primary_cause: String,
pub secondary_cause: String,
pub contributing_factors: Vec<ContributingFactor>,
pub estimated_lifespan: String,
pub death_certificate: String,
}Expand description
The autopsy report.
Fields§
§primary_cause: String§secondary_cause: String§contributing_factors: Vec<ContributingFactor>§estimated_lifespan: String§death_certificate: StringTrait Implementations§
Source§impl Clone for AutopsyReport
impl Clone for AutopsyReport
Source§fn clone(&self) -> AutopsyReport
fn clone(&self) -> AutopsyReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AutopsyReport
impl RefUnwindSafe for AutopsyReport
impl Send for AutopsyReport
impl Sync for AutopsyReport
impl Unpin for AutopsyReport
impl UnsafeUnpin for AutopsyReport
impl UnwindSafe for AutopsyReport
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