pub struct LocationGroup {
pub qualifier: String,
pub code: Option<String>,
pub agency: Option<String>,
pub quantities: Vec<Quantity>,
}Expand description
One LOC group: a location plus the quantity time series reported for it.
Fields§
§qualifier: StringDE 3227 place qualifier — Z19 (Netzpunkt), Z99 (keine Ortsangabe).
code: Option<String>C517 DE 3225 location identifier.
None for LOC+Z99, which ALOCAT sends when the message needs no
specific place. An absent code is normal, not a reason to drop the group.
agency: Option<String>C517 DE 3055 code-list responsible agency.
quantities: Vec<Quantity>The quantities reported for this location, in wire order.
Trait Implementations§
Source§impl Clone for LocationGroup
impl Clone for LocationGroup
Source§fn clone(&self) -> LocationGroup
fn clone(&self) -> LocationGroup
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 LocationGroup
impl Debug for LocationGroup
Source§impl PartialEq for LocationGroup
impl PartialEq for LocationGroup
impl StructuralPartialEq for LocationGroup
Auto Trait Implementations§
impl Freeze for LocationGroup
impl RefUnwindSafe for LocationGroup
impl Send for LocationGroup
impl Sync for LocationGroup
impl Unpin for LocationGroup
impl UnsafeUnpin for LocationGroup
impl UnwindSafe for LocationGroup
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