pub struct UpdateEvaluationOutput {
pub evaluation_id: Option<String>,
}
Expand description
Represents the output of an UpdateEvaluation
operation.
You can see the updated content by using the GetEvaluation
operation.
Fields§
§evaluation_id: Option<String>
The ID assigned to the Evaluation
during creation. This value should be identical to the value of the Evaluation
in the request.
Trait Implementations§
Source§impl Clone for UpdateEvaluationOutput
impl Clone for UpdateEvaluationOutput
Source§fn clone(&self) -> UpdateEvaluationOutput
fn clone(&self) -> UpdateEvaluationOutput
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 UpdateEvaluationOutput
impl Debug for UpdateEvaluationOutput
Source§impl Default for UpdateEvaluationOutput
impl Default for UpdateEvaluationOutput
Source§fn default() -> UpdateEvaluationOutput
fn default() -> UpdateEvaluationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateEvaluationOutput
impl<'de> Deserialize<'de> for UpdateEvaluationOutput
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 UpdateEvaluationOutput
impl PartialEq for UpdateEvaluationOutput
impl StructuralPartialEq for UpdateEvaluationOutput
Auto Trait Implementations§
impl Freeze for UpdateEvaluationOutput
impl RefUnwindSafe for UpdateEvaluationOutput
impl Send for UpdateEvaluationOutput
impl Sync for UpdateEvaluationOutput
impl Unpin for UpdateEvaluationOutput
impl UnwindSafe for UpdateEvaluationOutput
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