pub enum DetectorError {
NoFeatures,
}Expand description
Errors that can occur during language detection.
Variants§
NoFeatures
No detectable features found in the input text.
Trait Implementations§
Source§impl Clone for DetectorError
impl Clone for DetectorError
Source§fn clone(&self) -> DetectorError
fn clone(&self) -> DetectorError
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 DetectorError
impl Debug for DetectorError
Auto Trait Implementations§
impl Freeze for DetectorError
impl RefUnwindSafe for DetectorError
impl Send for DetectorError
impl Sync for DetectorError
impl Unpin for DetectorError
impl UnwindSafe for DetectorError
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