pub struct AiSystemCardTechnicalSpecifications {
pub model_provider: Option<String>,
pub model_ref: Option<String>,
pub max_context_tokens: Option<i64>,
pub built_in_tools: Option<Vec<String>>,
pub guardrails_enabled: Option<bool>,
pub guardrail_ids: Option<Vec<String>>,
}Expand description
AiSystemCardTechnicalSpecifications model.
Fields§
§model_provider: Option<String>§model_ref: Option<String>§max_context_tokens: Option<i64>§built_in_tools: Option<Vec<String>>§guardrails_enabled: Option<bool>§guardrail_ids: Option<Vec<String>>Trait Implementations§
Source§impl Clone for AiSystemCardTechnicalSpecifications
impl Clone for AiSystemCardTechnicalSpecifications
Source§fn clone(&self) -> AiSystemCardTechnicalSpecifications
fn clone(&self) -> AiSystemCardTechnicalSpecifications
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 Default for AiSystemCardTechnicalSpecifications
impl Default for AiSystemCardTechnicalSpecifications
Source§fn default() -> AiSystemCardTechnicalSpecifications
fn default() -> AiSystemCardTechnicalSpecifications
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AiSystemCardTechnicalSpecifications
impl<'de> Deserialize<'de> for AiSystemCardTechnicalSpecifications
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 StructuralPartialEq for AiSystemCardTechnicalSpecifications
Auto Trait Implementations§
impl Freeze for AiSystemCardTechnicalSpecifications
impl RefUnwindSafe for AiSystemCardTechnicalSpecifications
impl Send for AiSystemCardTechnicalSpecifications
impl Sync for AiSystemCardTechnicalSpecifications
impl Unpin for AiSystemCardTechnicalSpecifications
impl UnsafeUnpin for AiSystemCardTechnicalSpecifications
impl UnwindSafe for AiSystemCardTechnicalSpecifications
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