pub struct SubgraphVisual {
pub id: String,
pub label: String,
pub x: f32,
pub y: f32,
pub width: f32,
pub height: f32,
pub label_x: f32,
pub label_y: f32,
pub depth: usize,
pub order: usize,
pub parent_id: Option<String>,
}Fields§
§id: String§label: String§x: f32§y: f32§width: f32§height: f32§label_x: f32§label_y: f32§depth: usize§order: usize§parent_id: Option<String>Trait Implementations§
Source§impl Clone for SubgraphVisual
impl Clone for SubgraphVisual
Source§fn clone(&self) -> SubgraphVisual
fn clone(&self) -> SubgraphVisual
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 moreAuto Trait Implementations§
impl Freeze for SubgraphVisual
impl RefUnwindSafe for SubgraphVisual
impl Send for SubgraphVisual
impl Sync for SubgraphVisual
impl Unpin for SubgraphVisual
impl UnsafeUnpin for SubgraphVisual
impl UnwindSafe for SubgraphVisual
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