pub struct UnauditedTriage {
pub class: TriageClass,
pub blocker: &'static str,
}Expand description
One architecture’s triage verdict, carried on its own catalog row.
Deliberately NOT a second table keyed by architecture name. This repo
has fixed three separate bugs caused by two structures disagreeing
about the same architecture, so the verdict lives on the
ArchProfile the loader already resolves, and
every_unaudited_generic_architecture_is_triaged_or_listed_as_pending
pins that no generic row can exist without one or the other.
Fields§
§class: TriageClass§blocker: &'static strWhat is missing, with the llama.cpp src/models/*.cpp line that
decides it and the ferrox file that would change.
Trait Implementations§
Source§impl Clone for UnauditedTriage
impl Clone for UnauditedTriage
Source§fn clone(&self) -> UnauditedTriage
fn clone(&self) -> UnauditedTriage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UnauditedTriage
Source§impl Debug for UnauditedTriage
impl Debug for UnauditedTriage
impl Eq for UnauditedTriage
Source§impl PartialEq for UnauditedTriage
impl PartialEq for UnauditedTriage
impl StructuralPartialEq for UnauditedTriage
Auto Trait Implementations§
impl Freeze for UnauditedTriage
impl RefUnwindSafe for UnauditedTriage
impl Send for UnauditedTriage
impl Sync for UnauditedTriage
impl Unpin for UnauditedTriage
impl UnsafeUnpin for UnauditedTriage
impl UnwindSafe for UnauditedTriage
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more