Struct aws_sdk_omics::types::ExportReadSet
source · #[non_exhaustive]pub struct ExportReadSet {
pub read_set_id: Option<String>,
}
Expand description
A read set.
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.read_set_id: Option<String>
The set's ID.
Implementations§
source§impl ExportReadSet
impl ExportReadSet
sourcepub fn read_set_id(&self) -> Option<&str>
pub fn read_set_id(&self) -> Option<&str>
The set's ID.
source§impl ExportReadSet
impl ExportReadSet
sourcepub fn builder() -> ExportReadSetBuilder
pub fn builder() -> ExportReadSetBuilder
Creates a new builder-style object to manufacture ExportReadSet
.
Trait Implementations§
source§impl Clone for ExportReadSet
impl Clone for ExportReadSet
source§fn clone(&self) -> ExportReadSet
fn clone(&self) -> ExportReadSet
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 ExportReadSet
impl Debug for ExportReadSet
source§impl PartialEq<ExportReadSet> for ExportReadSet
impl PartialEq<ExportReadSet> for ExportReadSet
source§fn eq(&self, other: &ExportReadSet) -> bool
fn eq(&self, other: &ExportReadSet) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExportReadSet
Auto Trait Implementations§
impl RefUnwindSafe for ExportReadSet
impl Send for ExportReadSet
impl Sync for ExportReadSet
impl Unpin for ExportReadSet
impl UnwindSafe for ExportReadSet
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