Struct kml::types::LineString  
source · [−]pub struct LineString<T: CoordType = f64> {
    pub coords: Vec<Coord<T>>,
    pub extrude: bool,
    pub tessellate: bool,
    pub altitude_mode: AltitudeMode,
    pub attrs: HashMap<String, String>,
}Expand description
kml:LineString, 10.7 in the
KML specification
Fields
coords: Vec<Coord<T>>extrude: booltessellate: boolaltitude_mode: AltitudeModeattrs: HashMap<String, String>Trait Implementations
Returns the “default value” for a type. Read more
Performs the conversion.
impl<T> From<LineString<T>> for LineString<T> where
    T: CoordType + Default, 
This is supported on crate feature geo-types only.
impl<T> From<LineString<T>> for LineString<T> where
    T: CoordType + Default, 
This is supported on crate feature 
geo-types only.Performs the conversion.
impl<T> From<LineString<T>> for LineString<T> where
    T: CoordType, 
This is supported on crate feature geo-types only.
impl<T> From<LineString<T>> for LineString<T> where
    T: CoordType, 
This is supported on crate feature 
geo-types only.Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<T> RefUnwindSafe for LineString<T> where
    T: RefUnwindSafe, 
impl<T> Send for LineString<T> where
    T: Send, 
impl<T> Sync for LineString<T> where
    T: Sync, 
impl<T> Unpin for LineString<T> where
    T: Unpin, 
impl<T> UnwindSafe for LineString<T> where
    T: UnwindSafe, 
Blanket Implementations
Mutably borrows from an owned value. Read more