#[repr(u8)]
pub enum XYZEnum {
    X,
    Y,
    Z,
}Variants
X
Y
Z
Trait Implementations
sourceimpl IntoEnumIterator for XYZEnum
 
impl IntoEnumIterator for XYZEnum
type Iterator = XYZEnumIter
fn iter() -> XYZEnumIterⓘNotable traits for XYZEnumIterimpl Iterator for XYZEnumIter    type Item = XYZEnum;
impl Copy for XYZEnum
Auto Trait Implementations
impl RefUnwindSafe for XYZEnum
impl Send for XYZEnum
impl Sync for XYZEnum
impl Unpin for XYZEnum
impl UnwindSafe for XYZEnum
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Pointable for T
 
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more