pub enum VnResult {
Continue,
JumpTo {
chapter: Option<String>,
label: Option<String>,
},
Enter {
chapter: Option<String>,
label: Option<String>,
},
Exit,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VnResult
impl RefUnwindSafe for VnResult
impl Send for VnResult
impl Sync for VnResult
impl Unpin for VnResult
impl UnwindSafe for VnResult
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