pub struct SdsRoot {Show 17 fields
pub datasheet: Option<Datasheet>,
pub identification: Option<Identification>,
pub hazard_identification: Option<HazardIdentification>,
pub composition: Option<Composition>,
pub first_aid_measures: Option<FirstAidMeasures>,
pub fire_fighting_measures: Option<FireFightingMeasures>,
pub accidental_release_measures: Option<AccidentalReleaseMeasures>,
pub handling_and_storage: Option<HandlingAndStorage>,
pub exposure_control_personal_protection: Option<ExposureControlPersonalProtection>,
pub physical_chemical_properties: Option<PhysicalChemicalProperties>,
pub stability_reactivity: Option<StabilityReactivity>,
pub toxicological_information: Option<Vec<ToxicologicalInformation>>,
pub ecological_information: Option<Vec<EcologicalInformation>>,
pub disposal_considerations: Option<DisposalConsiderations>,
pub transport_information: Option<TransportInformation>,
pub regulatory_information: Option<RegulatoryInformation>,
pub other_information: Option<OtherInformation>,
}Fields§
§datasheet: Option<Datasheet>§identification: Option<Identification>§hazard_identification: Option<HazardIdentification>§composition: Option<Composition>§first_aid_measures: Option<FirstAidMeasures>§fire_fighting_measures: Option<FireFightingMeasures>§accidental_release_measures: Option<AccidentalReleaseMeasures>§handling_and_storage: Option<HandlingAndStorage>§exposure_control_personal_protection: Option<ExposureControlPersonalProtection>§physical_chemical_properties: Option<PhysicalChemicalProperties>§stability_reactivity: Option<StabilityReactivity>§toxicological_information: Option<Vec<ToxicologicalInformation>>§ecological_information: Option<Vec<EcologicalInformation>>§disposal_considerations: Option<DisposalConsiderations>§transport_information: Option<TransportInformation>§regulatory_information: Option<RegulatoryInformation>§other_information: Option<OtherInformation>Trait Implementations§
Source§impl<'de> Deserialize<'de> for SdsRoot
impl<'de> Deserialize<'de> for SdsRoot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SdsRoot
impl RefUnwindSafe for SdsRoot
impl Send for SdsRoot
impl Sync for SdsRoot
impl Unpin for SdsRoot
impl UnsafeUnpin for SdsRoot
impl UnwindSafe for SdsRoot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more