pub struct StreamSummary {
pub description: Option<String>,
pub stream_arn: Option<String>,
pub stream_id: Option<String>,
pub stream_version: Option<i64>,
}Expand description
A summary of a stream.
Fields§
§description: Option<String>A description of the stream.
stream_arn: Option<String>The stream ARN.
stream_id: Option<String>The stream ID.
stream_version: Option<i64>The stream version.
Trait Implementations§
Source§impl Clone for StreamSummary
impl Clone for StreamSummary
Source§fn clone(&self) -> StreamSummary
fn clone(&self) -> StreamSummary
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 StreamSummary
impl Debug for StreamSummary
Source§impl Default for StreamSummary
impl Default for StreamSummary
Source§fn default() -> StreamSummary
fn default() -> StreamSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamSummary
impl<'de> Deserialize<'de> for StreamSummary
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 StreamSummary
impl PartialEq for StreamSummary
impl StructuralPartialEq for StreamSummary
Auto Trait Implementations§
impl Freeze for StreamSummary
impl RefUnwindSafe for StreamSummary
impl Send for StreamSummary
impl Sync for StreamSummary
impl Unpin for StreamSummary
impl UnwindSafe for StreamSummary
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