pub struct TryFromRawError<R> { /* private fields */ }Expand description
An error which can occur when trying to convert a low-level type to a medium-level type.
This error is caused by reaper-rs, not by REAPER itself.
Trait Implementations§
Source§impl<R: Clone> Clone for TryFromRawError<R>
impl<R: Clone> Clone for TryFromRawError<R>
Source§fn clone(&self) -> TryFromRawError<R>
fn clone(&self) -> TryFromRawError<R>
Returns a duplicate 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<R: Debug> Debug for TryFromRawError<R>
impl<R: Debug> Debug for TryFromRawError<R>
Source§impl<R> Display for TryFromRawError<R>where
R: Display,
impl<R> Display for TryFromRawError<R>where
R: Display,
Source§impl<R: Copy + Display + Debug> Error for TryFromRawError<R>
impl<R: Copy + Display + Debug> Error for TryFromRawError<R>
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<R: PartialEq> PartialEq for TryFromRawError<R>
impl<R: PartialEq> PartialEq for TryFromRawError<R>
impl<R: Eq> Eq for TryFromRawError<R>
impl<R> StructuralPartialEq for TryFromRawError<R>
Auto Trait Implementations§
impl<R> Freeze for TryFromRawError<R>where
R: Freeze,
impl<R> RefUnwindSafe for TryFromRawError<R>where
R: RefUnwindSafe,
impl<R> Send for TryFromRawError<R>where
R: Send,
impl<R> Sync for TryFromRawError<R>where
R: Sync,
impl<R> Unpin for TryFromRawError<R>where
R: Unpin,
impl<R> UnwindSafe for TryFromRawError<R>where
R: UnwindSafe,
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