pub struct Data {
pub name: Option<String>,
pub uom: Option<String>,
pub display_name: Option<String>,
pub value: String,
pub attrs: HashMap<String, String>,
}Expand description
kml:Data 9.4 in the KML
Fields§
§name: Option<String>§uom: Option<String>§display_name: Option<String>§value: String§attrs: HashMap<String, String>Trait Implementations§
impl StructuralPartialEq for Data
Auto Trait Implementations§
impl Freeze for Data
impl RefUnwindSafe for Data
impl Send for Data
impl Sync for Data
impl Unpin for Data
impl UnsafeUnpin for Data
impl UnwindSafe for Data
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