pub enum FrameKindParseError {
Empty,
}Expand description
Error returned when parsing frame kinds fails.
Variants§
Empty
The frame kind was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for FrameKindParseError
impl Clone for FrameKindParseError
Source§fn clone(&self) -> FrameKindParseError
fn clone(&self) -> FrameKindParseError
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 moreSource§impl Debug for FrameKindParseError
impl Debug for FrameKindParseError
Source§impl Display for FrameKindParseError
impl Display for FrameKindParseError
Source§impl Error for FrameKindParseError
impl Error for FrameKindParseError
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 FrameKindParseError
impl PartialEq for FrameKindParseError
Source§fn eq(&self, other: &FrameKindParseError) -> bool
fn eq(&self, other: &FrameKindParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FrameKindParseError
impl Eq for FrameKindParseError
impl StructuralPartialEq for FrameKindParseError
Auto Trait Implementations§
impl Freeze for FrameKindParseError
impl RefUnwindSafe for FrameKindParseError
impl Send for FrameKindParseError
impl Sync for FrameKindParseError
impl Unpin for FrameKindParseError
impl UnsafeUnpin for FrameKindParseError
impl UnwindSafe for FrameKindParseError
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