Enum sctp_proto::Event
source · [−]pub enum Event {
Established,
AssociationLost {
reason: AssociationError,
},
Stream(StreamEvent),
DatagramReceived,
}
Expand description
Events of interest to the application
Variants
Established
The association was successfully established
AssociationLost
Fields
reason: AssociationError
Reason that the association was closed
The association was lost
Emitted if the peer closes the association or an error is encountered.
Stream(StreamEvent)
Stream events
DatagramReceived
One or more application datagrams have been received
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more