pub enum PointLineRelationship {
OnLine,
AboveLine,
BelowLine,
}Expand description
表示点与直线之间的关系。
Variants§
Trait Implementations§
Source§impl Clone for PointLineRelationship
impl Clone for PointLineRelationship
Source§fn clone(&self) -> PointLineRelationship
fn clone(&self) -> PointLineRelationship
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 PointLineRelationship
impl Debug for PointLineRelationship
Source§impl PartialEq for PointLineRelationship
impl PartialEq for PointLineRelationship
impl StructuralPartialEq for PointLineRelationship
Auto Trait Implementations§
impl Freeze for PointLineRelationship
impl RefUnwindSafe for PointLineRelationship
impl Send for PointLineRelationship
impl Sync for PointLineRelationship
impl Unpin for PointLineRelationship
impl UnwindSafe for PointLineRelationship
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