pub enum AxisPlanDir {
X,
Y,
}Expand description
平行芯グループが表す、平面上の位置の向き。
平行芯は「芯線に直交する向きの離れ」で位置が決まるため、離れを測る向きが グローバル X 軸に沿うグループは X 方向(=芯線は Y 軸に平行)、 Y 軸に沿うグループは Y 方向(=芯線は X 軸に平行)を表す。
Variants§
Trait Implementations§
Source§impl Clone for AxisPlanDir
impl Clone for AxisPlanDir
Source§fn clone(&self) -> AxisPlanDir
fn clone(&self) -> AxisPlanDir
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 AxisPlanDir
Source§impl Debug for AxisPlanDir
impl Debug for AxisPlanDir
impl Eq for AxisPlanDir
Source§impl PartialEq for AxisPlanDir
impl PartialEq for AxisPlanDir
Source§fn eq(&self, other: &AxisPlanDir) -> bool
fn eq(&self, other: &AxisPlanDir) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AxisPlanDir
Auto Trait Implementations§
impl Freeze for AxisPlanDir
impl RefUnwindSafe for AxisPlanDir
impl Send for AxisPlanDir
impl Sync for AxisPlanDir
impl Unpin for AxisPlanDir
impl UnsafeUnpin for AxisPlanDir
impl UnwindSafe for AxisPlanDir
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