pub enum ProbeResult {
Success,
Error(u16),
Timeout,
NetworkError(String),
}Expand description
Result of an LLM endpoint probe
Variants§
Trait Implementations§
Source§impl Debug for ProbeResult
impl Debug for ProbeResult
Source§impl PartialEq for ProbeResult
impl PartialEq for ProbeResult
impl StructuralPartialEq for ProbeResult
Auto Trait Implementations§
impl Freeze for ProbeResult
impl RefUnwindSafe for ProbeResult
impl Send for ProbeResult
impl Sync for ProbeResult
impl Unpin for ProbeResult
impl UnsafeUnpin for ProbeResult
impl UnwindSafe for ProbeResult
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