pub struct DescribeEvaluationsOutput {
pub next_token: Option<String>,
pub results: Option<Vec<Evaluation>>,
}
Expand description
Represents the query results from a DescribeEvaluations
operation. The content is essentially a list of Evaluation
.
Fields§
§next_token: Option<String>
The ID of the next page in the paginated results that indicates at least one more page follows.
results: Option<Vec<Evaluation>>
A list of Evaluation
that meet the search criteria.
Trait Implementations§
Source§impl Clone for DescribeEvaluationsOutput
impl Clone for DescribeEvaluationsOutput
Source§fn clone(&self) -> DescribeEvaluationsOutput
fn clone(&self) -> DescribeEvaluationsOutput
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 DescribeEvaluationsOutput
impl Debug for DescribeEvaluationsOutput
Source§impl Default for DescribeEvaluationsOutput
impl Default for DescribeEvaluationsOutput
Source§fn default() -> DescribeEvaluationsOutput
fn default() -> DescribeEvaluationsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeEvaluationsOutput
impl<'de> Deserialize<'de> for DescribeEvaluationsOutput
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 DescribeEvaluationsOutput
Auto Trait Implementations§
impl Freeze for DescribeEvaluationsOutput
impl RefUnwindSafe for DescribeEvaluationsOutput
impl Send for DescribeEvaluationsOutput
impl Sync for DescribeEvaluationsOutput
impl Unpin for DescribeEvaluationsOutput
impl UnwindSafe for DescribeEvaluationsOutput
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