pub struct DescribeStreamOutput {
pub stream_description: Option<StreamDescription>,
}Expand description
Represents the output of a DescribeStream operation.
Fields§
§stream_description: Option<StreamDescription>A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.
Trait Implementations§
Source§impl Clone for DescribeStreamOutput
impl Clone for DescribeStreamOutput
Source§fn clone(&self) -> DescribeStreamOutput
fn clone(&self) -> DescribeStreamOutput
Returns a duplicate 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 DescribeStreamOutput
impl Debug for DescribeStreamOutput
Source§impl Default for DescribeStreamOutput
impl Default for DescribeStreamOutput
Source§fn default() -> DescribeStreamOutput
fn default() -> DescribeStreamOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeStreamOutput
impl<'de> Deserialize<'de> for DescribeStreamOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeStreamOutput
impl PartialEq for DescribeStreamOutput
impl StructuralPartialEq for DescribeStreamOutput
Auto Trait Implementations§
impl Freeze for DescribeStreamOutput
impl RefUnwindSafe for DescribeStreamOutput
impl Send for DescribeStreamOutput
impl Sync for DescribeStreamOutput
impl Unpin for DescribeStreamOutput
impl UnwindSafe for DescribeStreamOutput
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