pub enum ParseActionError {
InvalidBacktraceLevel(String),
InvalidPlaySoundParameter(String),
InvalidScrollCommand(String),
InvalidVolume(ParseVolumeError),
UnknownAction(String),
UnknownInternal(String),
}Variants§
InvalidBacktraceLevel(String)
InvalidPlaySoundParameter(String)
InvalidScrollCommand(String)
InvalidVolume(ParseVolumeError)
UnknownAction(String)
UnknownInternal(String)
Trait Implementations§
Source§impl Debug for ParseActionError
impl Debug for ParseActionError
Source§impl Display for ParseActionError
impl Display for ParseActionError
Source§impl Error for ParseActionError
impl Error for ParseActionError
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 From<ParseVolumeError> for ParseActionError
impl From<ParseVolumeError> for ParseActionError
Source§fn from(e: ParseVolumeError) -> Self
fn from(e: ParseVolumeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseActionError
impl PartialEq for ParseActionError
impl StructuralPartialEq for ParseActionError
Auto Trait Implementations§
impl Freeze for ParseActionError
impl RefUnwindSafe for ParseActionError
impl Send for ParseActionError
impl Sync for ParseActionError
impl Unpin for ParseActionError
impl UnwindSafe for ParseActionError
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