pub struct StandardUnitDescriptionGroup {
pub standard_unit_descriptions: Option<Vec<StandardUnitDescription>>,
pub language_code: Option<String>,
}
Expand description
Group of standard measurement units.
Fields§
§standard_unit_descriptions: Option<Vec<StandardUnitDescription>>
List of standard (non-custom) measurement units in this description group.
language_code: Option<String>
IETF language tag.
Trait Implementations§
Source§impl Clone for StandardUnitDescriptionGroup
impl Clone for StandardUnitDescriptionGroup
Source§fn clone(&self) -> StandardUnitDescriptionGroup
fn clone(&self) -> StandardUnitDescriptionGroup
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StandardUnitDescriptionGroup
impl Debug for StandardUnitDescriptionGroup
Source§impl<'de> Deserialize<'de> for StandardUnitDescriptionGroup
impl<'de> Deserialize<'de> for StandardUnitDescriptionGroup
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
Source§impl PartialEq for StandardUnitDescriptionGroup
impl PartialEq for StandardUnitDescriptionGroup
Source§fn eq(&self, other: &StandardUnitDescriptionGroup) -> bool
fn eq(&self, other: &StandardUnitDescriptionGroup) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for StandardUnitDescriptionGroup
impl StructuralPartialEq for StandardUnitDescriptionGroup
Auto Trait Implementations§
impl Freeze for StandardUnitDescriptionGroup
impl RefUnwindSafe for StandardUnitDescriptionGroup
impl Send for StandardUnitDescriptionGroup
impl Sync for StandardUnitDescriptionGroup
impl Unpin for StandardUnitDescriptionGroup
impl UnwindSafe for StandardUnitDescriptionGroup
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.