Struct aws_sdk_omics::operation::start_read_set_activation_job::StartReadSetActivationJobOutput
source · #[non_exhaustive]pub struct StartReadSetActivationJobOutput {
pub id: String,
pub sequence_store_id: String,
pub status: ReadSetActivationJobStatus,
pub creation_time: DateTime,
/* private fields */
}
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.id: String
The job's ID.
sequence_store_id: String
The read set's sequence store ID.
status: ReadSetActivationJobStatus
The job's status.
creation_time: DateTime
When the job was created.
Implementations§
source§impl StartReadSetActivationJobOutput
impl StartReadSetActivationJobOutput
sourcepub fn sequence_store_id(&self) -> &str
pub fn sequence_store_id(&self) -> &str
The read set's sequence store ID.
sourcepub fn status(&self) -> &ReadSetActivationJobStatus
pub fn status(&self) -> &ReadSetActivationJobStatus
The job's status.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
When the job was created.
source§impl StartReadSetActivationJobOutput
impl StartReadSetActivationJobOutput
sourcepub fn builder() -> StartReadSetActivationJobOutputBuilder
pub fn builder() -> StartReadSetActivationJobOutputBuilder
Creates a new builder-style object to manufacture StartReadSetActivationJobOutput
.
Trait Implementations§
source§impl Clone for StartReadSetActivationJobOutput
impl Clone for StartReadSetActivationJobOutput
source§fn clone(&self) -> StartReadSetActivationJobOutput
fn clone(&self) -> StartReadSetActivationJobOutput
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 PartialEq for StartReadSetActivationJobOutput
impl PartialEq for StartReadSetActivationJobOutput
source§fn eq(&self, other: &StartReadSetActivationJobOutput) -> bool
fn eq(&self, other: &StartReadSetActivationJobOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for StartReadSetActivationJobOutput
impl RequestId for StartReadSetActivationJobOutput
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 StartReadSetActivationJobOutput
Auto Trait Implementations§
impl RefUnwindSafe for StartReadSetActivationJobOutput
impl Send for StartReadSetActivationJobOutput
impl Sync for StartReadSetActivationJobOutput
impl Unpin for StartReadSetActivationJobOutput
impl UnwindSafe for StartReadSetActivationJobOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.