pub struct LineStyle {
pub id: Option<String>,
pub color: String,
pub color_mode: ColorMode,
pub width: f64,
pub attrs: HashMap<String, String>,
}
Expand description
kml:LineStyle
, 12.15 in the
KML specification.
Fields§
§id: Option<String>
§color: String
§color_mode: ColorMode
§width: f64
§attrs: HashMap<String, String>
Trait Implementations§
impl StructuralPartialEq for LineStyle
Auto Trait Implementations§
impl Freeze for LineStyle
impl RefUnwindSafe for LineStyle
impl Send for LineStyle
impl Sync for LineStyle
impl Unpin for LineStyle
impl UnwindSafe for LineStyle
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