pub struct NodeVisual {
pub shape: &'static str,
pub fill: &'static str,
pub stroke: &'static str,
pub penwidth: f64,
pub style: Option<&'static str>,
pub height: Option<f64>,
pub width: Option<f64>,
}Expand description
Node visual style.
Fields§
§shape: &'static str§fill: &'static str§stroke: &'static str§penwidth: f64§style: Option<&'static str>§height: Option<f64>§width: Option<f64>Auto Trait Implementations§
impl Freeze for NodeVisual
impl RefUnwindSafe for NodeVisual
impl Send for NodeVisual
impl Sync for NodeVisual
impl Unpin for NodeVisual
impl UnsafeUnpin for NodeVisual
impl UnwindSafe for NodeVisual
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