#[non_exhaustive]pub struct FoundationModelSummary {
pub model_arn: String,
pub model_id: String,
pub model_name: Option<String>,
pub provider_name: Option<String>,
pub input_modalities: Option<Vec<ModelModality>>,
pub output_modalities: Option<Vec<ModelModality>>,
pub response_streaming_supported: Option<bool>,
pub customizations_supported: Option<Vec<CustomizationType>>,
pub inference_types_supported: Option<Vec<InferenceType>>,
pub model_lifecycle: Option<FoundationModelLifecycle>,
pub rest: Rest,
}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.model_arn: String§model_id: String§model_name: Option<String>§provider_name: Option<String>§input_modalities: Option<Vec<ModelModality>>§output_modalities: Option<Vec<ModelModality>>§response_streaming_supported: Option<bool>§customizations_supported: Option<Vec<CustomizationType>>§inference_types_supported: Option<Vec<InferenceType>>§model_lifecycle: Option<FoundationModelLifecycle>§rest: RestImplementations§
Trait Implementations§
Source§impl Clone for FoundationModelSummary
impl Clone for FoundationModelSummary
Source§fn clone(&self) -> FoundationModelSummary
fn clone(&self) -> FoundationModelSummary
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 FoundationModelSummary
impl Debug for FoundationModelSummary
Source§impl<'de> Deserialize<'de> for FoundationModelSummary
impl<'de> Deserialize<'de> for FoundationModelSummary
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 FoundationModelSummary
Source§impl PartialEq for FoundationModelSummary
impl PartialEq for FoundationModelSummary
Source§impl Serialize for FoundationModelSummary
impl Serialize for FoundationModelSummary
impl StructuralPartialEq for FoundationModelSummary
Auto Trait Implementations§
impl Freeze for FoundationModelSummary
impl RefUnwindSafe for FoundationModelSummary
impl Send for FoundationModelSummary
impl Sync for FoundationModelSummary
impl Unpin for FoundationModelSummary
impl UnsafeUnpin for FoundationModelSummary
impl UnwindSafe for FoundationModelSummary
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