Struct aws_sdk_omics::operation::get_reference::GetReferenceInput
source · #[non_exhaustive]pub struct GetReferenceInput {
pub id: Option<String>,
pub reference_store_id: Option<String>,
pub range: Option<String>,
pub part_number: Option<i32>,
pub file: Option<ReferenceFile>,
}
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: Option<String>
The reference's ID.
reference_store_id: Option<String>
The reference's store ID.
range: Option<String>
The range to retrieve.
part_number: Option<i32>
The part number to retrieve.
file: Option<ReferenceFile>
The file to retrieve.
Implementations§
source§impl GetReferenceInput
impl GetReferenceInput
sourcepub fn reference_store_id(&self) -> Option<&str>
pub fn reference_store_id(&self) -> Option<&str>
The reference's store ID.
sourcepub fn part_number(&self) -> Option<i32>
pub fn part_number(&self) -> Option<i32>
The part number to retrieve.
sourcepub fn file(&self) -> Option<&ReferenceFile>
pub fn file(&self) -> Option<&ReferenceFile>
The file to retrieve.
source§impl GetReferenceInput
impl GetReferenceInput
sourcepub fn builder() -> GetReferenceInputBuilder
pub fn builder() -> GetReferenceInputBuilder
Creates a new builder-style object to manufacture GetReferenceInput
.
Trait Implementations§
source§impl Clone for GetReferenceInput
impl Clone for GetReferenceInput
source§fn clone(&self) -> GetReferenceInput
fn clone(&self) -> GetReferenceInput
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 GetReferenceInput
impl Debug for GetReferenceInput
source§impl PartialEq for GetReferenceInput
impl PartialEq for GetReferenceInput
source§fn eq(&self, other: &GetReferenceInput) -> bool
fn eq(&self, other: &GetReferenceInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetReferenceInput
Auto Trait Implementations§
impl RefUnwindSafe for GetReferenceInput
impl Send for GetReferenceInput
impl Sync for GetReferenceInput
impl Unpin for GetReferenceInput
impl UnwindSafe for GetReferenceInput
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.