#[non_exhaustive]pub enum SudachiError {
Show 23 variants
ErrWithContext {
context: String,
cause: Box<SudachiError>,
},
Io {
cause: Error,
context: String,
},
ParseIntError(ParseIntError),
FromUtf16(FromUtf16Error),
RegexError(Error),
NomParseError(String),
InvalidUtf16FromNom,
SerdeError(Error),
InvalidCharacterCategory(Error),
ConfigError(ConfigError),
InvalidHeader(HeaderError),
LexiconSetError(LexiconSetError),
PluginError(PluginError),
EosBosDisconnect,
InvalidCharacterCategoryType(String),
InvalidDataFormat(usize, String),
InvalidDictionaryGrammar,
InvalidPartOfSpeech(String),
InvalidRange(usize, usize),
NoOOVPluginProvided,
InputTooLong(usize, usize),
DictionaryCompilationError(DicBuildError),
MorphemeListBorrowed,
}Expand description
Sudachi error
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ErrWithContext
Io
ParseIntError(ParseIntError)
FromUtf16(FromUtf16Error)
RegexError(Error)
NomParseError(String)
InvalidUtf16FromNom
SerdeError(Error)
InvalidCharacterCategory(Error)
ConfigError(ConfigError)
InvalidHeader(HeaderError)
LexiconSetError(LexiconSetError)
PluginError(PluginError)
EosBosDisconnect
InvalidCharacterCategoryType(String)
InvalidDataFormat(usize, String)
InvalidDictionaryGrammar
InvalidPartOfSpeech(String)
InvalidRange(usize, usize)
NoOOVPluginProvided
InputTooLong(usize, usize)
DictionaryCompilationError(DicBuildError)
MorphemeListBorrowed
Implementations§
Source§impl SudachiError
impl SudachiError
pub fn with_context<S: Into<String>>(self, ctx: S) -> Self
Trait Implementations§
Source§impl Debug for SudachiError
impl Debug for SudachiError
Source§impl Display for SudachiError
impl Display for SudachiError
Source§impl Error for SudachiError
impl Error for SudachiError
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<ConfigError> for SudachiError
impl From<ConfigError> for SudachiError
Source§fn from(source: ConfigError) -> Self
fn from(source: ConfigError) -> Self
Converts to this type from the input type.
Source§impl From<DicBuildError> for SudachiError
impl From<DicBuildError> for SudachiError
Source§fn from(source: DicBuildError) -> Self
fn from(source: DicBuildError) -> Self
Converts to this type from the input type.
Source§impl<I: Debug> From<Err<SudachiNomError<I>>> for SudachiError
impl<I: Debug> From<Err<SudachiNomError<I>>> for SudachiError
Source§fn from(err: Err<SudachiNomError<I>>) -> Self
fn from(err: Err<SudachiNomError<I>>) -> Self
Converts to this type from the input type.
Source§impl From<Error> for SudachiError
impl From<Error> for SudachiError
Source§impl From<Error> for SudachiError
impl From<Error> for SudachiError
Source§impl From<Error> for SudachiError
impl From<Error> for SudachiError
Source§fn from(source: CharacterCategoryError) -> Self
fn from(source: CharacterCategoryError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for SudachiError
impl From<Error> for SudachiError
Source§impl From<FromUtf16Error> for SudachiError
impl From<FromUtf16Error> for SudachiError
Source§fn from(source: FromUtf16Error) -> Self
fn from(source: FromUtf16Error) -> Self
Converts to this type from the input type.
Source§impl From<HeaderError> for SudachiError
impl From<HeaderError> for SudachiError
Source§fn from(source: HeaderError) -> Self
fn from(source: HeaderError) -> Self
Converts to this type from the input type.
Source§impl From<LexiconSetError> for SudachiError
impl From<LexiconSetError> for SudachiError
Source§fn from(source: LexiconSetError) -> Self
fn from(source: LexiconSetError) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for SudachiError
impl From<ParseIntError> for SudachiError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl From<PluginError> for SudachiError
impl From<PluginError> for SudachiError
Source§fn from(source: PluginError) -> Self
fn from(source: PluginError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SudachiError
impl !RefUnwindSafe for SudachiError
impl Send for SudachiError
impl Sync for SudachiError
impl Unpin for SudachiError
impl !UnwindSafe for SudachiError
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more