pub enum LlamaContextLoadError {
NullReturn,
}
Expand description
Failed to Load context
Variants§
NullReturn
llama.cpp returned null
Trait Implementations§
source§impl Debug for LlamaContextLoadError
impl Debug for LlamaContextLoadError
source§impl Display for LlamaContextLoadError
impl Display for LlamaContextLoadError
source§impl Error for LlamaContextLoadError
impl Error for LlamaContextLoadError
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<LlamaContextLoadError> for LLamaCppError
impl From<LlamaContextLoadError> for LLamaCppError
source§fn from(source: LlamaContextLoadError) -> Self
fn from(source: LlamaContextLoadError) -> Self
Converts to this type from the input type.
source§impl PartialEq for LlamaContextLoadError
impl PartialEq for LlamaContextLoadError
source§fn eq(&self, other: &LlamaContextLoadError) -> bool
fn eq(&self, other: &LlamaContextLoadError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for LlamaContextLoadError
impl StructuralEq for LlamaContextLoadError
impl StructuralPartialEq for LlamaContextLoadError
Auto Trait Implementations§
impl RefUnwindSafe for LlamaContextLoadError
impl Send for LlamaContextLoadError
impl Sync for LlamaContextLoadError
impl Unpin for LlamaContextLoadError
impl UnwindSafe for LlamaContextLoadError
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