pub struct ReaperFunctionError { /* private fields */ }
Expand description
An error which can occur when executing a REAPER function.
This is not an error caused by reaper-rs, but one reported by REAPER itself. The error message is not very specific most of the time because REAPER functions usually don’t give information about the cause of the error.
Trait Implementations§
Source§impl Clone for ReaperFunctionError
impl Clone for ReaperFunctionError
Source§fn clone(&self) -> ReaperFunctionError
fn clone(&self) -> ReaperFunctionError
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 ReaperFunctionError
impl Debug for ReaperFunctionError
Source§impl Display for ReaperFunctionError
impl Display for ReaperFunctionError
Source§impl Error for ReaperFunctionError
impl Error for ReaperFunctionError
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 ReaperFunctionError
impl PartialEq for ReaperFunctionError
impl Copy for ReaperFunctionError
impl Eq for ReaperFunctionError
impl StructuralPartialEq for ReaperFunctionError
Auto Trait Implementations§
impl Freeze for ReaperFunctionError
impl RefUnwindSafe for ReaperFunctionError
impl Send for ReaperFunctionError
impl Sync for ReaperFunctionError
impl Unpin for ReaperFunctionError
impl UnwindSafe for ReaperFunctionError
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