Struct aws_sdk_devicefarm::operation::get_run::GetRunOutput
source · #[non_exhaustive]pub struct GetRunOutput {
pub run: Option<Run>,
/* private fields */
}
Expand description
Represents the result of a get run request.
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.run: Option<Run>
The run to get results from.
Implementations§
source§impl GetRunOutput
impl GetRunOutput
sourcepub fn builder() -> GetRunOutputBuilder
pub fn builder() -> GetRunOutputBuilder
Creates a new builder-style object to manufacture GetRunOutput
.
Trait Implementations§
source§impl Clone for GetRunOutput
impl Clone for GetRunOutput
source§fn clone(&self) -> GetRunOutput
fn clone(&self) -> GetRunOutput
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 GetRunOutput
impl Debug for GetRunOutput
source§impl PartialEq<GetRunOutput> for GetRunOutput
impl PartialEq<GetRunOutput> for GetRunOutput
source§fn eq(&self, other: &GetRunOutput) -> bool
fn eq(&self, other: &GetRunOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetRunOutput
impl RequestId for GetRunOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetRunOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRunOutput
impl Send for GetRunOutput
impl Sync for GetRunOutput
impl Unpin for GetRunOutput
impl UnwindSafe for GetRunOutput
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