pub struct CatalogEntry {
pub crate_name: String,
pub intent: String,
pub summary: String,
pub rationale: Vec<String>,
pub goal_fits: Vec<GoalFit>,
pub tradeoffs: Vec<Tradeoff>,
pub trust_notes: Vec<TrustNote>,
pub confidence: Confidence,
pub archetype: RecommendationArchetype,
}Fields§
§crate_name: String§intent: String§summary: String§rationale: Vec<String>§goal_fits: Vec<GoalFit>§tradeoffs: Vec<Tradeoff>§trust_notes: Vec<TrustNote>§confidence: Confidence§archetype: RecommendationArchetypeTrait Implementations§
Source§impl Clone for CatalogEntry
impl Clone for CatalogEntry
Source§fn clone(&self) -> CatalogEntry
fn clone(&self) -> CatalogEntry
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 CatalogEntry
impl Debug for CatalogEntry
Source§impl PartialEq for CatalogEntry
impl PartialEq for CatalogEntry
Source§impl Serialize for CatalogEntry
impl Serialize for CatalogEntry
impl Eq for CatalogEntry
impl StructuralPartialEq for CatalogEntry
Auto Trait Implementations§
impl Freeze for CatalogEntry
impl RefUnwindSafe for CatalogEntry
impl Send for CatalogEntry
impl Sync for CatalogEntry
impl Unpin for CatalogEntry
impl UnsafeUnpin for CatalogEntry
impl UnwindSafe for CatalogEntry
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