pub enum SocketRunEventResult<V> {
Ok,
HadFailures(V),
}Expand description
The results of a socket running its events
Variants§
Auto Trait Implementations§
impl<V> Freeze for SocketRunEventResult<V>where
V: Freeze,
impl<V> RefUnwindSafe for SocketRunEventResult<V>where
V: RefUnwindSafe,
impl<V> Send for SocketRunEventResult<V>where
V: Send,
impl<V> Sync for SocketRunEventResult<V>where
V: Sync,
impl<V> Unpin for SocketRunEventResult<V>where
V: Unpin,
impl<V> UnwindSafe for SocketRunEventResult<V>where
V: UnwindSafe,
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