pub struct DescribeSessionsResult {
pub next_token: Option<String>,
pub sessions: Option<Vec<Session>>,
}
Fields§
§next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
sessions: Option<Vec<Session>>
Information about the streaming sessions.
Trait Implementations§
Source§impl Clone for DescribeSessionsResult
impl Clone for DescribeSessionsResult
Source§fn clone(&self) -> DescribeSessionsResult
fn clone(&self) -> DescribeSessionsResult
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 DescribeSessionsResult
impl Debug for DescribeSessionsResult
Source§impl Default for DescribeSessionsResult
impl Default for DescribeSessionsResult
Source§fn default() -> DescribeSessionsResult
fn default() -> DescribeSessionsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeSessionsResult
impl<'de> Deserialize<'de> for DescribeSessionsResult
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 DescribeSessionsResult
impl PartialEq for DescribeSessionsResult
impl StructuralPartialEq for DescribeSessionsResult
Auto Trait Implementations§
impl Freeze for DescribeSessionsResult
impl RefUnwindSafe for DescribeSessionsResult
impl Send for DescribeSessionsResult
impl Sync for DescribeSessionsResult
impl Unpin for DescribeSessionsResult
impl UnwindSafe for DescribeSessionsResult
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