pub struct VertexFlags(/* private fields */);Expand description
Vertex flags (bitflags) Direct port from clipper.engine.h line 34
Implementations§
Source§impl VertexFlags
impl VertexFlags
pub const EMPTY: VertexFlags
pub const OPEN_START: VertexFlags
pub const OPEN_END: VertexFlags
pub const LOCAL_MAX: VertexFlags
pub const LOCAL_MIN: VertexFlags
Trait Implementations§
Source§impl BitAnd for VertexFlags
impl BitAnd for VertexFlags
Source§impl BitAndAssign for VertexFlags
impl BitAndAssign for VertexFlags
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&= operation. Read moreSource§impl BitOr for VertexFlags
impl BitOr for VertexFlags
Source§impl BitOrAssign for VertexFlags
impl BitOrAssign for VertexFlags
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|= operation. Read moreSource§impl Clone for VertexFlags
impl Clone for VertexFlags
Source§fn clone(&self) -> VertexFlags
fn clone(&self) -> VertexFlags
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 VertexFlags
impl Debug for VertexFlags
Source§impl Default for VertexFlags
impl Default for VertexFlags
Source§fn default() -> VertexFlags
fn default() -> VertexFlags
Returns the “default value” for a type. Read more
Source§impl Hash for VertexFlags
impl Hash for VertexFlags
Source§impl PartialEq for VertexFlags
impl PartialEq for VertexFlags
impl Copy for VertexFlags
impl Eq for VertexFlags
impl StructuralPartialEq for VertexFlags
Auto Trait Implementations§
impl Freeze for VertexFlags
impl RefUnwindSafe for VertexFlags
impl Send for VertexFlags
impl Sync for VertexFlags
impl Unpin for VertexFlags
impl UnwindSafe for VertexFlags
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