pub struct PhysicalChemicalProperties {Show 21 fields
pub base_physical_chemical_properties: Option<PhysicalChemicalPropertiesBasePhysicalChemicalProperties>,
pub melting_point_related: Option<Vec<PhysicalChemicalPropertiesMeltingPointRelated>>,
pub boiling_point_related: Option<Vec<PhysicalChemicalPropertiesBoilingPointRelated>>,
pub flammability: Option<Vec<String>>,
pub explosion_limit: Option<Vec<PhysicalChemicalPropertiesExplosionLimit>>,
pub flash_point: Option<Vec<PhysicalChemicalPropertiesFlashPoint>>,
pub autoignition_temperature: Option<Vec<PhysicalChemicalPropertiesAutoignitionTemperature>>,
pub decomposition_temperature: Option<Vec<PhysicalChemicalPropertiesDecompositionTemperature>>,
pub ph_value: Option<Vec<PhysicalChemicalPropertiesPhValue>>,
pub dynamic_viscosity: Option<Vec<PhysicalChemicalPropertiesDynamicViscosity>>,
pub solubilities: Option<PhysicalChemicalPropertiesSolubilities>,
pub partition_coefficient: Option<Vec<PhysicalChemicalPropertiesPartitionCoefficient>>,
pub vapour_pressure: Option<Vec<PhysicalChemicalPropertiesVapourPressure>>,
pub densities: Option<Vec<PhysicalChemicalPropertiesDensities>>,
pub relative_vapour_density: Option<Vec<PhysicalChemicalPropertiesRelativeVapourDensity>>,
pub particle_size: Option<PhysicalChemicalPropertiesParticleSize>,
pub radioactivity: Option<Vec<PhysicalChemicalPropertiesRadioactivity>>,
pub bulk_density: Option<Vec<PhysicalChemicalPropertiesBulkDensity>>,
pub burning_persistence: Option<Vec<PhysicalChemicalPropertiesBurningPersistence>>,
pub other_physical_chemical_property: Option<Vec<PhysicalChemicalPropertiesOtherPhysicalChemicalProperty>>,
pub additional_info: Option<AdditionalInfo>,
}Fields§
§base_physical_chemical_properties: Option<PhysicalChemicalPropertiesBasePhysicalChemicalProperties>§flammability: Option<Vec<String>>§explosion_limit: Option<Vec<PhysicalChemicalPropertiesExplosionLimit>>§flash_point: Option<Vec<PhysicalChemicalPropertiesFlashPoint>>§autoignition_temperature: Option<Vec<PhysicalChemicalPropertiesAutoignitionTemperature>>§decomposition_temperature: Option<Vec<PhysicalChemicalPropertiesDecompositionTemperature>>§ph_value: Option<Vec<PhysicalChemicalPropertiesPhValue>>§dynamic_viscosity: Option<Vec<PhysicalChemicalPropertiesDynamicViscosity>>§solubilities: Option<PhysicalChemicalPropertiesSolubilities>§partition_coefficient: Option<Vec<PhysicalChemicalPropertiesPartitionCoefficient>>§vapour_pressure: Option<Vec<PhysicalChemicalPropertiesVapourPressure>>§densities: Option<Vec<PhysicalChemicalPropertiesDensities>>§relative_vapour_density: Option<Vec<PhysicalChemicalPropertiesRelativeVapourDensity>>§particle_size: Option<PhysicalChemicalPropertiesParticleSize>§radioactivity: Option<Vec<PhysicalChemicalPropertiesRadioactivity>>§bulk_density: Option<Vec<PhysicalChemicalPropertiesBulkDensity>>§burning_persistence: Option<Vec<PhysicalChemicalPropertiesBurningPersistence>>§other_physical_chemical_property: Option<Vec<PhysicalChemicalPropertiesOtherPhysicalChemicalProperty>>§additional_info: Option<AdditionalInfo>Trait Implementations§
Source§impl Clone for PhysicalChemicalProperties
impl Clone for PhysicalChemicalProperties
Source§fn clone(&self) -> PhysicalChemicalProperties
fn clone(&self) -> PhysicalChemicalProperties
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 moreSource§impl Debug for PhysicalChemicalProperties
impl Debug for PhysicalChemicalProperties
Source§impl Default for PhysicalChemicalProperties
impl Default for PhysicalChemicalProperties
Source§fn default() -> PhysicalChemicalProperties
fn default() -> PhysicalChemicalProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PhysicalChemicalProperties
impl<'de> Deserialize<'de> for PhysicalChemicalProperties
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 PhysicalChemicalProperties
impl RefUnwindSafe for PhysicalChemicalProperties
impl Send for PhysicalChemicalProperties
impl Sync for PhysicalChemicalProperties
impl Unpin for PhysicalChemicalProperties
impl UnsafeUnpin for PhysicalChemicalProperties
impl UnwindSafe for PhysicalChemicalProperties
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