pub struct GetStreamsForSessionQuery {
pub session_id: SessionIdDto,
pub include_inactive: bool,
}
Expand description
Get all streams for a session
Fields§
§session_id: SessionIdDto
§include_inactive: bool
Trait Implementations§
Source§impl Clone for GetStreamsForSessionQuery
impl Clone for GetStreamsForSessionQuery
Source§fn clone(&self) -> GetStreamsForSessionQuery
fn clone(&self) -> GetStreamsForSessionQuery
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 GetStreamsForSessionQuery
impl Debug for GetStreamsForSessionQuery
Source§impl<'de> Deserialize<'de> for GetStreamsForSessionQuery
impl<'de> Deserialize<'de> for GetStreamsForSessionQuery
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<R, S> QueryHandler<GetStreamsForSessionQuery, StreamsResponse> for StreamQueryHandler<R, S>
impl<R, S> QueryHandler<GetStreamsForSessionQuery, StreamsResponse> for StreamQueryHandler<R, S>
fn handle<'life0, 'async_trait>(
&'life0 self,
query: GetStreamsForSessionQuery,
) -> Pin<Box<dyn Future<Output = ApplicationResult<StreamsResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for GetStreamsForSessionQuery
impl RefUnwindSafe for GetStreamsForSessionQuery
impl Send for GetStreamsForSessionQuery
impl Sync for GetStreamsForSessionQuery
impl Unpin for GetStreamsForSessionQuery
impl UnwindSafe for GetStreamsForSessionQuery
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