pub enum OPointFacingDir {
ParentSame,
ParentOpposite,
Right,
}Expand description
Whether the same / opposite of parent, or always to the right.
Variants§
ParentSame
Face the same direction as the parent.
ParentOpposite
Face the opposite direction to the parent.
Right
Always face to the right.
Trait Implementations§
Source§impl Clone for OPointFacingDir
impl Clone for OPointFacingDir
Source§fn clone(&self) -> OPointFacingDir
fn clone(&self) -> OPointFacingDir
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 OPointFacingDir
impl Debug for OPointFacingDir
Source§impl Default for OPointFacingDir
impl Default for OPointFacingDir
Source§impl PartialEq for OPointFacingDir
impl PartialEq for OPointFacingDir
impl Copy for OPointFacingDir
impl Eq for OPointFacingDir
impl StructuralPartialEq for OPointFacingDir
Auto Trait Implementations§
impl Freeze for OPointFacingDir
impl RefUnwindSafe for OPointFacingDir
impl Send for OPointFacingDir
impl Sync for OPointFacingDir
impl Unpin for OPointFacingDir
impl UnwindSafe for OPointFacingDir
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