pub enum TranslateError {
AccessFail,
OutputFull,
LockError(LockError),
}
Variants§
Trait Implementations§
Source§impl Clone for TranslateError
impl Clone for TranslateError
Source§fn clone(&self) -> TranslateError
fn clone(&self) -> TranslateError
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 Debug for TranslateError
impl Debug for TranslateError
Source§impl From<LockError> for TranslateError
impl From<LockError> for TranslateError
impl Copy for TranslateError
Auto Trait Implementations§
impl Freeze for TranslateError
impl RefUnwindSafe for TranslateError
impl Send for TranslateError
impl Sync for TranslateError
impl Unpin for TranslateError
impl UnwindSafe for TranslateError
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