pub struct SessionCompletionResult {
pub stream_id: StreamId,
pub session_closed: bool,
pub remaining_active_streams: usize,
}
Expand description
Result of stream completion workflow
Fields§
§stream_id: StreamId
§session_closed: bool
§remaining_active_streams: usize
Trait Implementations§
Source§impl Clone for SessionCompletionResult
impl Clone for SessionCompletionResult
Source§fn clone(&self) -> SessionCompletionResult
fn clone(&self) -> SessionCompletionResult
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 moreAuto Trait Implementations§
impl Freeze for SessionCompletionResult
impl RefUnwindSafe for SessionCompletionResult
impl Send for SessionCompletionResult
impl Sync for SessionCompletionResult
impl Unpin for SessionCompletionResult
impl UnwindSafe for SessionCompletionResult
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