Struct aws_sdk_qldb::operation::get_digest::GetDigestOutput   
source · #[non_exhaustive]pub struct GetDigestOutput {
    pub digest: Blob,
    pub digest_tip_address: Option<ValueHolder>,
    /* 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.digest: BlobThe 256-bit hash value representing the digest returned by a GetDigest request.
digest_tip_address: Option<ValueHolder>The latest block location covered by the digest that you requested. An address is an Amazon Ion structure that has two fields: strandId and sequenceNo.
Implementations§
source§impl GetDigestOutput
 
impl GetDigestOutput
sourcepub fn digest(&self) -> &Blob
 
pub fn digest(&self) -> &Blob
The 256-bit hash value representing the digest returned by a GetDigest request.
sourcepub fn digest_tip_address(&self) -> Option<&ValueHolder>
 
pub fn digest_tip_address(&self) -> Option<&ValueHolder>
The latest block location covered by the digest that you requested. An address is an Amazon Ion structure that has two fields: strandId and sequenceNo.
source§impl GetDigestOutput
 
impl GetDigestOutput
sourcepub fn builder() -> GetDigestOutputBuilder
 
pub fn builder() -> GetDigestOutputBuilder
Creates a new builder-style object to manufacture GetDigestOutput.
Trait Implementations§
source§impl Clone for GetDigestOutput
 
impl Clone for GetDigestOutput
source§fn clone(&self) -> GetDigestOutput
 
fn clone(&self) -> GetDigestOutput
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 GetDigestOutput
 
impl Debug for GetDigestOutput
source§impl PartialEq for GetDigestOutput
 
impl PartialEq for GetDigestOutput
source§fn eq(&self, other: &GetDigestOutput) -> bool
 
fn eq(&self, other: &GetDigestOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for GetDigestOutput
 
impl RequestId for GetDigestOutput
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 GetDigestOutput
Auto Trait Implementations§
impl Freeze for GetDigestOutput
impl RefUnwindSafe for GetDigestOutput
impl Send for GetDigestOutput
impl Sync for GetDigestOutput
impl Unpin for GetDigestOutput
impl UnwindSafe for GetDigestOutput
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.