pub trait CopyResume {
const BOTH_OPEN_STATE: RuntimeState;
const BOTH_SERVER_DONE_STATE: RuntimeState;
}Expand description
Maps a COPY resumption marker to its generated nested-session states.
Required Associated Constants§
Sourceconst BOTH_OPEN_STATE: RuntimeState
const BOTH_OPEN_STATE: RuntimeState
Generated state while both COPY directions remain open.
Sourceconst BOTH_SERVER_DONE_STATE: RuntimeState
const BOTH_SERVER_DONE_STATE: RuntimeState
Generated state after the server closes its COPY direction.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".