pub enum DerivedBytesEstimate {
NativeFp8Dense(PredictedDerived),
Unavailable(&'static str),
}Expand description
The answer, or an honest refusal to answer.
Variants§
NativeFp8Dense(PredictedDerived)
The native-FP8 dense route will run and its derived bytes are this.
No prediction. The &'static str is the reason, written to be
readable in a serve log (… — falling back to pre-load free memory (<reason>)).
Implementations§
Trait Implementations§
Source§impl Clone for DerivedBytesEstimate
impl Clone for DerivedBytesEstimate
Source§fn clone(&self) -> DerivedBytesEstimate
fn clone(&self) -> DerivedBytesEstimate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DerivedBytesEstimate
impl Debug for DerivedBytesEstimate
Source§impl PartialEq for DerivedBytesEstimate
impl PartialEq for DerivedBytesEstimate
impl Copy for DerivedBytesEstimate
impl Eq for DerivedBytesEstimate
impl StructuralPartialEq for DerivedBytesEstimate
Auto Trait Implementations§
impl Freeze for DerivedBytesEstimate
impl RefUnwindSafe for DerivedBytesEstimate
impl Send for DerivedBytesEstimate
impl Sync for DerivedBytesEstimate
impl Unpin for DerivedBytesEstimate
impl UnwindSafe for DerivedBytesEstimate
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.