pub struct CompleteStreamCommand {
pub session_id: SessionIdDto,
pub stream_id: StreamIdDto,
pub checksum: Option<String>,
}
Expand description
Complete a stream successfully
Fields§
§session_id: SessionIdDto
§stream_id: StreamIdDto
§checksum: Option<String>
Trait Implementations§
Source§impl Clone for CompleteStreamCommand
impl Clone for CompleteStreamCommand
Source§fn clone(&self) -> CompleteStreamCommand
fn clone(&self) -> CompleteStreamCommand
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<R, P> CommandHandler<CompleteStreamCommand, ()> for SessionCommandHandler<R, P>
impl<R, P> CommandHandler<CompleteStreamCommand, ()> for SessionCommandHandler<R, P>
fn handle<'life0, 'async_trait>(
&'life0 self,
command: CompleteStreamCommand,
) -> Pin<Box<dyn Future<Output = ApplicationResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Source§impl Debug for CompleteStreamCommand
impl Debug for CompleteStreamCommand
Source§impl<'de> Deserialize<'de> for CompleteStreamCommand
impl<'de> Deserialize<'de> for CompleteStreamCommand
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
Auto Trait Implementations§
impl Freeze for CompleteStreamCommand
impl RefUnwindSafe for CompleteStreamCommand
impl Send for CompleteStreamCommand
impl Sync for CompleteStreamCommand
impl Unpin for CompleteStreamCommand
impl UnwindSafe for CompleteStreamCommand
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