pub struct SelectionStyle {
pub margin: Margin,
pub rounding: CornerRadius,
pub fill: Color32,
pub stroke: Stroke,
}Expand description
Controls style of node selection rect.
Fields§
§margin: MarginMargin between selection rect and node frame.
rounding: CornerRadiusRounding of selection rect.
fill: Color32Fill color of selection rect.
stroke: StrokeStroke of selection rect.
Trait Implementations§
Source§impl Clone for SelectionStyle
impl Clone for SelectionStyle
Source§fn clone(&self) -> SelectionStyle
fn clone(&self) -> SelectionStyle
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 SelectionStyle
impl Debug for SelectionStyle
Source§impl Default for SelectionStyle
impl Default for SelectionStyle
Source§fn default() -> SelectionStyle
fn default() -> SelectionStyle
Returns the “default value” for a type. Read more
Source§impl EguiScale for SelectionStyle
impl EguiScale for SelectionStyle
Source§impl PartialEq for SelectionStyle
impl PartialEq for SelectionStyle
impl Copy for SelectionStyle
impl StructuralPartialEq for SelectionStyle
Auto Trait Implementations§
impl Freeze for SelectionStyle
impl RefUnwindSafe for SelectionStyle
impl Send for SelectionStyle
impl Sync for SelectionStyle
impl Unpin for SelectionStyle
impl UnwindSafe for SelectionStyle
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