pub enum HandleGroup {
Feature,
Sketch,
}Expand description
What a handle belongs to, so an editor can offer only what fits what the user is doing: a feature’s parameters while looking at the part, a sketch’s points while sketching.
Variants§
Trait Implementations§
Source§impl Clone for HandleGroup
impl Clone for HandleGroup
Source§fn clone(&self) -> HandleGroup
fn clone(&self) -> HandleGroup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HandleGroup
Source§impl Debug for HandleGroup
impl Debug for HandleGroup
impl Eq for HandleGroup
Source§impl PartialEq for HandleGroup
impl PartialEq for HandleGroup
Source§fn eq(&self, other: &HandleGroup) -> bool
fn eq(&self, other: &HandleGroup) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HandleGroup
impl Serialize for HandleGroup
impl StructuralPartialEq for HandleGroup
Auto Trait Implementations§
impl Freeze for HandleGroup
impl RefUnwindSafe for HandleGroup
impl Send for HandleGroup
impl Sync for HandleGroup
impl Unpin for HandleGroup
impl UnsafeUnpin for HandleGroup
impl UnwindSafe for HandleGroup
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more