pub struct SelectionStyle {
pub color: String,
pub width: f64,
pub dasharray: Option<String>,
pub glow_color: Option<String>,
pub glow_blur: Option<f64>,
}Expand description
Selection visual state
Fields§
§color: String§width: f64§dasharray: Option<String>§glow_color: Option<String>§glow_blur: Option<f64>Trait Implementations§
Source§impl Clone for SelectionStyle
impl Clone for SelectionStyle
Source§fn clone(&self) -> SelectionStyle
fn clone(&self) -> SelectionStyle
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 SelectionStyle
impl Debug for SelectionStyle
Source§impl Default for SelectionStyle
impl Default for SelectionStyle
Source§impl PartialEq for SelectionStyle
impl PartialEq for SelectionStyle
impl StructuralPartialEq for SelectionStyle
Auto Trait Implementations§
impl Freeze for SelectionStyle
impl RefUnwindSafe for SelectionStyle
impl Send for SelectionStyle
impl Sync for SelectionStyle
impl Unpin for SelectionStyle
impl UnwindSafe for SelectionStyle
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