pub enum BrokenReason {
PageNotFound,
HeadingNotFound {
heading: String,
},
BlockNotFound {
block_id: String,
},
}Expand description
Why a wikilink could not be resolved.
Variants§
Trait Implementations§
Source§impl Debug for BrokenReason
impl Debug for BrokenReason
Auto Trait Implementations§
impl Freeze for BrokenReason
impl RefUnwindSafe for BrokenReason
impl Send for BrokenReason
impl Sync for BrokenReason
impl Unpin for BrokenReason
impl UnsafeUnpin for BrokenReason
impl UnwindSafe for BrokenReason
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