pub enum CPointKind {
Catcher = 1,
Caught = 2,
}Expand description
Variants of CPoint.
Variants§
Trait Implementations§
Source§impl Clone for CPointKind
impl Clone for CPointKind
Source§fn clone(&self) -> CPointKind
fn clone(&self) -> CPointKind
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 CPointKind
impl Debug for CPointKind
Source§impl Default for CPointKind
impl Default for CPointKind
Source§impl FromStr for CPointKind
impl FromStr for CPointKind
Source§type Err = CPointKindParseError
type Err = CPointKindParseError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<CPointKind, CPointKindParseError>
fn from_str(s: &str) -> Result<CPointKind, CPointKindParseError>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for CPointKind
impl PartialEq for CPointKind
impl Copy for CPointKind
impl Eq for CPointKind
impl StructuralPartialEq for CPointKind
Auto Trait Implementations§
impl Freeze for CPointKind
impl RefUnwindSafe for CPointKind
impl Send for CPointKind
impl Sync for CPointKind
impl Unpin for CPointKind
impl UnwindSafe for CPointKind
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