pub enum CopyBothServerDoneInternalProjection<Transport, SourceCleanliness> {
SendCopyData {
connection: Conn<Transport, CopyBothServerDone, SourceCleanliness>,
message: CopyBothServerDoneSendCopyDataInternalTransitionMessage,
source_cleanliness: PhantomData<SourceCleanliness>,
},
SendCopyDone {
connection: Conn<Transport, AwaitingReady, SourceCleanliness>,
message: CopyBothServerDoneSendCopyDoneInternalTransitionMessage,
source_cleanliness: PhantomData<SourceCleanliness>,
},
// some variants omitted
}Expand description
Typed next-connection projection for CopyBothServerDoneInternalMessage.
Variants§
SendCopyData
The Event::SendCopyData transition and its correctly typed next connection.
Fields
§
connection: Conn<Transport, CopyBothServerDone, SourceCleanliness>Connection after applying the selected message transition.
§
message: CopyBothServerDoneSendCopyDataInternalTransitionMessageValidated message which selected this transition.
§
source_cleanliness: PhantomData<SourceCleanliness>Retains the source cleanliness parameter even when replaced.
SendCopyDone
The Event::SendCopyDone transition and its correctly typed next connection.
Fields
§
connection: Conn<Transport, AwaitingReady, SourceCleanliness>Connection after applying the selected message transition.
§
message: CopyBothServerDoneSendCopyDoneInternalTransitionMessageValidated message which selected this transition.
§
source_cleanliness: PhantomData<SourceCleanliness>Retains the source cleanliness parameter even when replaced.
Auto Trait Implementations§
impl<Transport, SourceCleanliness> !Freeze for CopyBothServerDoneInternalProjection<Transport, SourceCleanliness>
impl<Transport, SourceCleanliness> RefUnwindSafe for CopyBothServerDoneInternalProjection<Transport, SourceCleanliness>where
Transport: RefUnwindSafe,
SourceCleanliness: RefUnwindSafe,
impl<Transport, SourceCleanliness> Send for CopyBothServerDoneInternalProjection<Transport, SourceCleanliness>
impl<Transport, SourceCleanliness> Sync for CopyBothServerDoneInternalProjection<Transport, SourceCleanliness>
impl<Transport, SourceCleanliness> Unpin for CopyBothServerDoneInternalProjection<Transport, SourceCleanliness>
impl<Transport, SourceCleanliness> UnsafeUnpin for CopyBothServerDoneInternalProjection<Transport, SourceCleanliness>where
Transport: UnsafeUnpin,
impl<Transport, SourceCleanliness> UnwindSafe for CopyBothServerDoneInternalProjection<Transport, SourceCleanliness>where
Transport: UnwindSafe,
SourceCleanliness: UnwindSafe,
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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