pub enum CaseIntegerItem {
Integer(i32),
Character(char),
}Variants§
Trait Implementations§
Source§impl Clone for CaseIntegerItem
impl Clone for CaseIntegerItem
Source§fn clone(&self) -> CaseIntegerItem
fn clone(&self) -> CaseIntegerItem
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 CaseIntegerItem
impl Debug for CaseIntegerItem
Source§impl Display for CaseIntegerItem
impl Display for CaseIntegerItem
Source§impl PartialEq for CaseIntegerItem
impl PartialEq for CaseIntegerItem
impl Copy for CaseIntegerItem
impl Eq for CaseIntegerItem
impl StructuralPartialEq for CaseIntegerItem
Auto Trait Implementations§
impl Freeze for CaseIntegerItem
impl RefUnwindSafe for CaseIntegerItem
impl Send for CaseIntegerItem
impl Sync for CaseIntegerItem
impl Unpin for CaseIntegerItem
impl UnwindSafe for CaseIntegerItem
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