pub struct OrientationParseError {
pub str_found: String,
}Expand description
An error arising from trying to parse an Orientation that is not valid.
Fields§
§str_found: StringThe invalid string found.
Trait Implementations§
Source§impl Debug for OrientationParseError
impl Debug for OrientationParseError
Source§impl Display for OrientationParseError
impl Display for OrientationParseError
Source§impl Error for OrientationParseError
impl Error for OrientationParseError
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()
Auto Trait Implementations§
impl Freeze for OrientationParseError
impl RefUnwindSafe for OrientationParseError
impl Send for OrientationParseError
impl Sync for OrientationParseError
impl Unpin for OrientationParseError
impl UnwindSafe for OrientationParseError
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