Skip to main content

LibsyError

Enum LibsyError 

Source
pub enum LibsyError {
    TargetNotFound {
        target: String,
    },
    NoTargets,
    AlgorithmError {
        message: String,
    },
    MissingClient {
        target: String,
    },
    Driver(DriverError),
    AlgorithmTask {
        source: JoinError,
    },
    MissingFinalResponse,
    ClientCall {
        target: String,
        source: LlmClientError,
    },
    AllTargetsExcluded,
    External {
        operation: &'static str,
        source: Box<dyn StdError + Send + Sync>,
    },
}
Expand description

Failures surfaced while selecting a route, driving an algorithm, or serving a model call.

Variants§

§

TargetNotFound

A named target was not present in the configured target set.

Fields

§target: String

Missing semantic target name.

§

NoTargets

Routing was attempted without any configured targets.

§

AlgorithmError

An algorithm could not complete for an algorithm-specific reason.

Fields

§message: String

Description of the algorithm failure.

§

MissingClient

A routed target had no default client for crate::Algorithm::run.

Fields

§target: String

Target that could not be served.

§

Driver(DriverError)

The type-erased offload driver could not complete an operation.

§

AlgorithmTask

The spawned algorithm task failed before returning normally.

Fields

§source: JoinError

Tokio task failure, including panic and unexpected cancellation details.

§

MissingFinalResponse

An algorithm’s step stream ended without a terminal response.

§

ClientCall

A target’s protocol client failed while serving a routed request.

Fields

§target: String

Target whose client failed.

§source: LlmClientError

Typed error supplied by the protocol-owned client trait.

§

AllTargetsExcluded

Every target overflowed its context window.

§

External

A user extension or other foreign operation failed.

Fields

§operation: &'static str

Short description of the operation that failed.

§source: Box<dyn StdError + Send + Sync>

Original failure.

Implementations§

Source§

impl LibsyError

Source

pub fn client_call(target: impl Into<String>, source: LlmClientError) -> Self

Wrap an error returned by the protocol-owned client trait.

Source

pub fn external( operation: &'static str, source: impl StdError + Send + Sync + 'static, ) -> Self

Preserve a concrete foreign error with a description of the failed operation.

Trait Implementations§

Source§

impl Debug for LibsyError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for LibsyError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for LibsyError

Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<DriverError> for LibsyError

Source§

fn from(source: DriverError) -> Self

Converts to this type from the input type.
Source§

impl From<JoinError> for LibsyError

Source§

fn from(source: JoinError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more