#[non_exhaustive]pub struct GetEvaluationRequest {
pub name: String,
/* private fields */
}Expand description
Retrieves a specific Evaluation.
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.name: StringRequired. The resource name of the
Evaluation to get.
projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processorVersion}/evaluations/{evaluation}
Implementations§
Trait Implementations§
Source§impl Clone for GetEvaluationRequest
impl Clone for GetEvaluationRequest
Source§fn clone(&self) -> GetEvaluationRequest
fn clone(&self) -> GetEvaluationRequest
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 GetEvaluationRequest
impl Debug for GetEvaluationRequest
Source§impl Default for GetEvaluationRequest
impl Default for GetEvaluationRequest
Source§fn default() -> GetEvaluationRequest
fn default() -> GetEvaluationRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetEvaluationRequest
impl Message for GetEvaluationRequest
Source§impl PartialEq for GetEvaluationRequest
impl PartialEq for GetEvaluationRequest
impl StructuralPartialEq for GetEvaluationRequest
Auto Trait Implementations§
impl Freeze for GetEvaluationRequest
impl RefUnwindSafe for GetEvaluationRequest
impl Send for GetEvaluationRequest
impl Sync for GetEvaluationRequest
impl Unpin for GetEvaluationRequest
impl UnwindSafe for GetEvaluationRequest
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