pub enum TriangleType {
Acute,
Right,
Obtuse,
}Expand description
枚举类型,表示三角形的类型。
Variants§
Trait Implementations§
Source§impl Debug for TriangleType
impl Debug for TriangleType
Source§impl PartialEq for TriangleType
impl PartialEq for TriangleType
impl StructuralPartialEq for TriangleType
Auto Trait Implementations§
impl Freeze for TriangleType
impl RefUnwindSafe for TriangleType
impl Send for TriangleType
impl Sync for TriangleType
impl Unpin for TriangleType
impl UnwindSafe for TriangleType
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