pub struct SimpleData {
pub name: String,
pub value: String,
pub attrs: HashMap<String, String>,
}
Expand description
kml:SimpleData
, 9.6 in the KML specification.
Fields§
§name: String
§value: String
§attrs: HashMap<String, String>
Trait Implementations§
Source§impl Clone for SimpleData
impl Clone for SimpleData
Source§fn clone(&self) -> SimpleData
fn clone(&self) -> SimpleData
Returns a duplicate of the value. Read more
1.0.0 · 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 SimpleData
impl Debug for SimpleData
Source§impl Default for SimpleData
impl Default for SimpleData
Source§fn default() -> SimpleData
fn default() -> SimpleData
Returns the “default value” for a type. Read more
Source§impl PartialEq for SimpleData
impl PartialEq for SimpleData
impl Eq for SimpleData
impl StructuralPartialEq for SimpleData
Auto Trait Implementations§
impl Freeze for SimpleData
impl RefUnwindSafe for SimpleData
impl Send for SimpleData
impl Sync for SimpleData
impl Unpin for SimpleData
impl UnwindSafe for SimpleData
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.