Enum sctp_proto::StreamEvent [−][src]
pub enum StreamEvent {
Opened,
Readable {
id: u16,
},
Writable {
id: u16,
},
Finished {
id: u16,
},
Stopped {
id: u16,
error_code: u16,
},
Available,
}
Expand description
Application events about streams
Variants
Opened
One or more new streams has been opened
Readable
Fields
id: u16
Which stream is now readable
A currently open stream has data or errors waiting to be read
Writable
Fields
id: u16
Which stream is now writable
A formerly write-blocked stream might be ready for a write or have been stopped
Only generated for streams that are currently open.
Finished
Fields
id: u16
Which stream has been finished
A finished stream has been fully acknowledged or stopped
Stopped
The peer asked us to stop sending on an outgoing stream
Available
At least one new stream of a certain directionality may be opened
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for StreamEvent
impl Send for StreamEvent
impl Sync for StreamEvent
impl Unpin for StreamEvent
impl UnwindSafe for StreamEvent
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more