pub enum CodeExplanation {
InvalidCode,
ManualCode(ManualCodeExplanation),
AutomaticCode(AutomaticCodeExplanation),
GreenCode(GreenCodePoint),
SetEnd(u8),
}
Variants§
InvalidCode
ManualCode(ManualCodeExplanation)
AutomaticCode(AutomaticCodeExplanation)
GreenCode(GreenCodePoint)
SetEnd(u8)
Implementations§
Source§impl CodeExplanation
impl CodeExplanation
pub fn new(code: String) -> CodeExplanation
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CodeExplanation
impl RefUnwindSafe for CodeExplanation
impl Send for CodeExplanation
impl Sync for CodeExplanation
impl Unpin for CodeExplanation
impl UnwindSafe for CodeExplanation
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