pub struct StreamInfo {
pub created_at: Option<f64>,
pub description: Option<String>,
pub files: Option<Vec<StreamFile>>,
pub last_updated_at: Option<f64>,
pub role_arn: Option<String>,
pub stream_arn: Option<String>,
pub stream_id: Option<String>,
pub stream_version: Option<i64>,
}Expand description
Information about a stream.
Fields§
§created_at: Option<f64>The date when the stream was created.
description: Option<String>The description of the stream.
files: Option<Vec<StreamFile>>The files to stream.
last_updated_at: Option<f64>The date when the stream was last updated.
role_arn: Option<String>An IAM role AWS IoT assumes to access your S3 files.
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 StreamInfo
impl Clone for StreamInfo
Source§fn clone(&self) -> StreamInfo
fn clone(&self) -> StreamInfo
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 StreamInfo
impl Debug for StreamInfo
Source§impl Default for StreamInfo
impl Default for StreamInfo
Source§fn default() -> StreamInfo
fn default() -> StreamInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamInfo
impl<'de> Deserialize<'de> for StreamInfo
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 StreamInfo
impl PartialEq for StreamInfo
impl StructuralPartialEq for StreamInfo
Auto Trait Implementations§
impl Freeze for StreamInfo
impl RefUnwindSafe for StreamInfo
impl Send for StreamInfo
impl Sync for StreamInfo
impl Unpin for StreamInfo
impl UnwindSafe for StreamInfo
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