pub enum ErrorLinkFormat {
ParseError,
}Expand description
Error type for parsing a link format.
Variants§
ParseError
An error was encountered while parsing the link format.
Trait Implementations§
Source§impl Clone for ErrorLinkFormat
impl Clone for ErrorLinkFormat
Source§fn clone(&self) -> ErrorLinkFormat
fn clone(&self) -> ErrorLinkFormat
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 ErrorLinkFormat
Source§impl Debug for ErrorLinkFormat
impl Debug for ErrorLinkFormat
impl Eq for ErrorLinkFormat
Source§impl From<ErrorLinkFormat> for Error
impl From<ErrorLinkFormat> for Error
Source§fn from(_: ErrorLinkFormat) -> Self
fn from(_: ErrorLinkFormat) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ErrorLinkFormat
impl PartialEq for ErrorLinkFormat
Source§fn eq(&self, other: &ErrorLinkFormat) -> bool
fn eq(&self, other: &ErrorLinkFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ErrorLinkFormat
Auto Trait Implementations§
impl Freeze for ErrorLinkFormat
impl RefUnwindSafe for ErrorLinkFormat
impl Send for ErrorLinkFormat
impl Sync for ErrorLinkFormat
impl Unpin for ErrorLinkFormat
impl UnsafeUnpin for ErrorLinkFormat
impl UnwindSafe for ErrorLinkFormat
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