#[non_exhaustive]pub struct ModelReasoningLevel {
pub effort: String,
pub description: String,
}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.effort: String§description: StringImplementations§
Trait Implementations§
Source§impl Clone for ModelReasoningLevel
impl Clone for ModelReasoningLevel
Source§fn clone(&self) -> ModelReasoningLevel
fn clone(&self) -> ModelReasoningLevel
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 ModelReasoningLevel
impl Debug for ModelReasoningLevel
Source§impl<'de> Deserialize<'de> for ModelReasoningLevel
impl<'de> Deserialize<'de> for ModelReasoningLevel
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
impl Eq for ModelReasoningLevel
Source§impl PartialEq for ModelReasoningLevel
impl PartialEq for ModelReasoningLevel
Source§impl Serialize for ModelReasoningLevel
impl Serialize for ModelReasoningLevel
impl StructuralPartialEq for ModelReasoningLevel
Auto Trait Implementations§
impl Freeze for ModelReasoningLevel
impl RefUnwindSafe for ModelReasoningLevel
impl Send for ModelReasoningLevel
impl Sync for ModelReasoningLevel
impl Unpin for ModelReasoningLevel
impl UnsafeUnpin for ModelReasoningLevel
impl UnwindSafe for ModelReasoningLevel
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