pub struct ParseKeyActionError {
pub parsing: String,
pub kind: ParseKeyActionErrorKind,
pub source: Option<ParseModifierError>,
}Fields§
§parsing: String§kind: ParseKeyActionErrorKind§source: Option<ParseModifierError>Trait Implementations§
Source§impl Clone for ParseKeyActionError
impl Clone for ParseKeyActionError
Source§fn clone(&self) -> ParseKeyActionError
fn clone(&self) -> ParseKeyActionError
Returns a copy of the value. Read more
1.0.0 · 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 ParseKeyActionError
impl Debug for ParseKeyActionError
Source§impl Display for ParseKeyActionError
impl Display for ParseKeyActionError
Source§impl Error for ParseKeyActionError
impl Error for ParseKeyActionError
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 ParseKeyActionError
impl PartialEq for ParseKeyActionError
impl Eq for ParseKeyActionError
impl StructuralPartialEq for ParseKeyActionError
Auto Trait Implementations§
impl Freeze for ParseKeyActionError
impl RefUnwindSafe for ParseKeyActionError
impl Send for ParseKeyActionError
impl Sync for ParseKeyActionError
impl Unpin for ParseKeyActionError
impl UnwindSafe for ParseKeyActionError
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