pub struct EdgeStyle {
pub stroke_color: Option<String>,
pub stroke_width: Option<f64>,
pub stroke_dasharray: Option<String>,
pub marker_start: Option<String>,
pub marker_end: Option<String>,
pub opacity: Option<f64>,
pub animated: bool,
}Expand description
Styling information for edges
Fields§
§stroke_color: Option<String>§stroke_width: Option<f64>§stroke_dasharray: Option<String>§marker_start: Option<String>§marker_end: Option<String>§opacity: Option<f64>§animated: boolTrait Implementations§
impl StructuralPartialEq for EdgeStyle
Auto Trait Implementations§
impl Freeze for EdgeStyle
impl RefUnwindSafe for EdgeStyle
impl Send for EdgeStyle
impl Sync for EdgeStyle
impl Unpin for EdgeStyle
impl UnwindSafe for EdgeStyle
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