pub struct ModelChoice {
pub id: String,
pub description: String,
}Expand description
Legacy model choice (claudy-specific: id + description). Retained for backward compatibility with existing catalog.json entries.
Fields§
§id: StringModel identifier.
description: StringShort description of the model.
Trait Implementations§
Source§impl Clone for ModelChoice
impl Clone for ModelChoice
Source§fn clone(&self) -> ModelChoice
fn clone(&self) -> ModelChoice
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 moreSource§impl Debug for ModelChoice
impl Debug for ModelChoice
Source§impl<'de> Deserialize<'de> for ModelChoice
impl<'de> Deserialize<'de> for ModelChoice
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ModelChoice
impl RefUnwindSafe for ModelChoice
impl Send for ModelChoice
impl Sync for ModelChoice
impl Unpin for ModelChoice
impl UnsafeUnpin for ModelChoice
impl UnwindSafe for ModelChoice
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