pub enum TextSplitterError {
EmptyInputText,
MetadataTextMismatch,
TokenizerNotFound,
InvalidTokenizer,
InvalidModel,
OtherError(String),
}
Variants§
EmptyInputText
MetadataTextMismatch
TokenizerNotFound
InvalidTokenizer
InvalidModel
OtherError(String)
Trait Implementations§
source§impl Debug for TextSplitterError
impl Debug for TextSplitterError
source§impl Display for TextSplitterError
impl Display for TextSplitterError
source§impl Error for TextSplitterError
impl Error for TextSplitterError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<TextSplitterError> for LoaderError
impl From<TextSplitterError> for LoaderError
source§fn from(source: TextSplitterError) -> Self
fn from(source: TextSplitterError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TextSplitterError
impl RefUnwindSafe for TextSplitterError
impl Send for TextSplitterError
impl Sync for TextSplitterError
impl Unpin for TextSplitterError
impl UnwindSafe for TextSplitterError
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