pub enum PinPlacement {
Inside,
Edge,
Outside {
margin: f32,
},
}Expand description
Controls how pins are placed in the node.
Variants§
Inside
Pins are placed inside the node frame.
Edge
Pins are placed on the edge of the node frame.
Outside
Pins are placed outside the node frame.
Trait Implementations§
Source§impl Clone for PinPlacement
impl Clone for PinPlacement
Source§fn clone(&self) -> PinPlacement
fn clone(&self) -> PinPlacement
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 PinPlacement
impl Debug for PinPlacement
Source§impl Default for PinPlacement
impl Default for PinPlacement
Source§fn default() -> PinPlacement
fn default() -> PinPlacement
Returns the “default value” for a type. Read more
Source§impl EguiScale for PinPlacement
impl EguiScale for PinPlacement
Source§impl PartialEq for PinPlacement
impl PartialEq for PinPlacement
impl Copy for PinPlacement
impl StructuralPartialEq for PinPlacement
Auto Trait Implementations§
impl Freeze for PinPlacement
impl RefUnwindSafe for PinPlacement
impl Send for PinPlacement
impl Sync for PinPlacement
impl Unpin for PinPlacement
impl UnwindSafe for PinPlacement
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