pub struct Readiness {
pub readable: bool,
pub writable: bool,
pub error: bool,
}Expand description
Readiness readable marks the event as readable writable marks the event as writable error means that your event is an error
Fields§
§readable: bool§writable: bool§error: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Readiness
impl RefUnwindSafe for Readiness
impl Send for Readiness
impl Sync for Readiness
impl Unpin for Readiness
impl UnwindSafe for Readiness
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