Struct aws_sdk_ebs::model::ChangedBlock
source · [−]#[non_exhaustive]pub struct ChangedBlock {
pub block_index: Option<i32>,
pub first_block_token: Option<String>,
pub second_block_token: Option<String>,
}Expand description
A block of data in an Amazon Elastic Block Store snapshot that is different from another snapshot of the same volume/snapshot lineage.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.block_index: Option<i32>The block index.
first_block_token: Option<String>The block token for the block index of the FirstSnapshotId specified in the ListChangedBlocks operation. This value is absent if the first snapshot does not have the changed block that is on the second snapshot.
second_block_token: Option<String>The block token for the block index of the SecondSnapshotId specified in the ListChangedBlocks operation.
Implementations
sourceimpl ChangedBlock
impl ChangedBlock
sourcepub fn block_index(&self) -> Option<i32>
pub fn block_index(&self) -> Option<i32>
The block index.
sourcepub fn first_block_token(&self) -> Option<&str>
pub fn first_block_token(&self) -> Option<&str>
The block token for the block index of the FirstSnapshotId specified in the ListChangedBlocks operation. This value is absent if the first snapshot does not have the changed block that is on the second snapshot.
sourcepub fn second_block_token(&self) -> Option<&str>
pub fn second_block_token(&self) -> Option<&str>
The block token for the block index of the SecondSnapshotId specified in the ListChangedBlocks operation.
sourceimpl ChangedBlock
impl ChangedBlock
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ChangedBlock
Trait Implementations
sourceimpl Clone for ChangedBlock
impl Clone for ChangedBlock
sourcefn clone(&self) -> ChangedBlock
fn clone(&self) -> ChangedBlock
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ChangedBlock
impl Debug for ChangedBlock
sourceimpl PartialEq<ChangedBlock> for ChangedBlock
impl PartialEq<ChangedBlock> for ChangedBlock
sourcefn eq(&self, other: &ChangedBlock) -> bool
fn eq(&self, other: &ChangedBlock) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ChangedBlock) -> bool
fn ne(&self, other: &ChangedBlock) -> bool
This method tests for !=.
impl StructuralPartialEq for ChangedBlock
Auto Trait Implementations
impl RefUnwindSafe for ChangedBlock
impl Send for ChangedBlock
impl Sync for ChangedBlock
impl Unpin for ChangedBlock
impl UnwindSafe for ChangedBlock
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more