pub enum TuringOutput {
Undefined(usize),
Defined((usize, u32)),
}
Variants§
Trait Implementations§
Source§impl Clone for TuringOutput
impl Clone for TuringOutput
Source§fn clone(&self) -> TuringOutput
fn clone(&self) -> TuringOutput
Returns a copy 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 TuringOutput
impl Debug for TuringOutput
Source§impl Default for TuringOutput
impl Default for TuringOutput
Source§impl Display for TuringOutput
impl Display for TuringOutput
Source§impl Hash for TuringOutput
impl Hash for TuringOutput
Source§impl PartialEq for TuringOutput
impl PartialEq for TuringOutput
impl Copy for TuringOutput
impl Eq for TuringOutput
impl StructuralPartialEq for TuringOutput
Auto Trait Implementations§
impl Freeze for TuringOutput
impl RefUnwindSafe for TuringOutput
impl Send for TuringOutput
impl Sync for TuringOutput
impl Unpin for TuringOutput
impl UnwindSafe for TuringOutput
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