pub struct ModelSummary {
pub creation_time: f64,
pub model_arn: String,
pub model_name: String,
}
Expand description
Provides summary information about a model.
Fields§
§creation_time: f64
A timestamp that indicates when the model was created.
model_arn: String
The Amazon Resource Name (ARN) of the model.
model_name: String
The name of the model that you want a summary for.
Trait Implementations§
Source§impl Clone for ModelSummary
impl Clone for ModelSummary
Source§fn clone(&self) -> ModelSummary
fn clone(&self) -> ModelSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 ModelSummary
impl Debug for ModelSummary
Source§impl Default for ModelSummary
impl Default for ModelSummary
Source§fn default() -> ModelSummary
fn default() -> ModelSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelSummary
impl<'de> Deserialize<'de> for ModelSummary
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 ModelSummary
impl PartialEq for ModelSummary
impl StructuralPartialEq for ModelSummary
Auto Trait Implementations§
impl Freeze for ModelSummary
impl RefUnwindSafe for ModelSummary
impl Send for ModelSummary
impl Sync for ModelSummary
impl Unpin for ModelSummary
impl UnwindSafe for ModelSummary
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