pub struct AlgorithmSummary {
pub algorithm_arn: String,
pub algorithm_description: Option<String>,
pub algorithm_name: String,
pub algorithm_status: String,
pub creation_time: f64,
}
Expand description
Provides summary information about an algorithm.
Fields§
§algorithm_arn: String
The Amazon Resource Name (ARN) of the algorithm.
algorithm_description: Option<String>
A brief description of the algorithm.
algorithm_name: String
The name of the algorithm that is described by the summary.
algorithm_status: String
The overall status of the algorithm.
creation_time: f64
A timestamp that shows when the algorithm was created.
Trait Implementations§
Source§impl Clone for AlgorithmSummary
impl Clone for AlgorithmSummary
Source§fn clone(&self) -> AlgorithmSummary
fn clone(&self) -> AlgorithmSummary
Returns a copy 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 AlgorithmSummary
impl Debug for AlgorithmSummary
Source§impl Default for AlgorithmSummary
impl Default for AlgorithmSummary
Source§fn default() -> AlgorithmSummary
fn default() -> AlgorithmSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlgorithmSummary
impl<'de> Deserialize<'de> for AlgorithmSummary
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 AlgorithmSummary
impl PartialEq for AlgorithmSummary
impl StructuralPartialEq for AlgorithmSummary
Auto Trait Implementations§
impl Freeze for AlgorithmSummary
impl RefUnwindSafe for AlgorithmSummary
impl Send for AlgorithmSummary
impl Sync for AlgorithmSummary
impl Unpin for AlgorithmSummary
impl UnwindSafe for AlgorithmSummary
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