pub enum TldrParseError {
MissingCommandHeading,
}Expand description
A tldr page lacks the minimum structure required by the contract.
Variants§
MissingCommandHeading
Trait Implementations§
Source§impl Clone for TldrParseError
impl Clone for TldrParseError
Source§fn clone(&self) -> TldrParseError
fn clone(&self) -> TldrParseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TldrParseError
Source§impl Debug for TldrParseError
impl Debug for TldrParseError
Source§impl Display for TldrParseError
impl Display for TldrParseError
impl Eq for TldrParseError
Source§impl Error for TldrParseError
impl Error for TldrParseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for TldrParseError
impl PartialEq for TldrParseError
impl StructuralPartialEq for TldrParseError
Auto Trait Implementations§
impl Freeze for TldrParseError
impl RefUnwindSafe for TldrParseError
impl Send for TldrParseError
impl Sync for TldrParseError
impl Unpin for TldrParseError
impl UnsafeUnpin for TldrParseError
impl UnwindSafe for TldrParseError
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