#[non_exhaustive]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 (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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 Default for ModelChoice
impl Default for ModelChoice
Source§fn default() -> ModelChoice
fn default() -> ModelChoice
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for ModelChoice
impl PartialEq for ModelChoice
Source§fn eq(&self, other: &ModelChoice) -> bool
fn eq(&self, other: &ModelChoice) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ModelChoice
impl Serialize for ModelChoice
impl StructuralPartialEq for ModelChoice
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