pub struct ListStreamsResponse {
pub next_token: Option<String>,
pub streams: Option<Vec<StreamSummary>>,
}Fields§
§next_token: Option<String>A token used to get the next set of results.
streams: Option<Vec<StreamSummary>>A list of streams.
Trait Implementations§
Source§impl Clone for ListStreamsResponse
impl Clone for ListStreamsResponse
Source§fn clone(&self) -> ListStreamsResponse
fn clone(&self) -> ListStreamsResponse
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 ListStreamsResponse
impl Debug for ListStreamsResponse
Source§impl Default for ListStreamsResponse
impl Default for ListStreamsResponse
Source§fn default() -> ListStreamsResponse
fn default() -> ListStreamsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListStreamsResponse
impl<'de> Deserialize<'de> for ListStreamsResponse
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 ListStreamsResponse
impl PartialEq for ListStreamsResponse
impl StructuralPartialEq for ListStreamsResponse
Auto Trait Implementations§
impl Freeze for ListStreamsResponse
impl RefUnwindSafe for ListStreamsResponse
impl Send for ListStreamsResponse
impl Sync for ListStreamsResponse
impl Unpin for ListStreamsResponse
impl UnwindSafe for ListStreamsResponse
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