pub struct PositionedNode {
pub id: String,
pub label: String,
pub rect: Rect,
pub node_type: NodeType,
}Expand description
Positioned node in a layout
Fields§
§id: String§label: String§rect: Rect§node_type: NodeTypeTrait Implementations§
Source§impl Clone for PositionedNode
impl Clone for PositionedNode
Source§fn clone(&self) -> PositionedNode
fn clone(&self) -> PositionedNode
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 PositionedNode
impl RefUnwindSafe for PositionedNode
impl Send for PositionedNode
impl Sync for PositionedNode
impl Unpin for PositionedNode
impl UnwindSafe for PositionedNode
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