pub struct TickProgress {
pub recv_is_done: bool,
pub send_is_done: bool,
}Expand description
The result of a tick(). Check for progress indication.
Fields§
§recv_is_done: boolState of ongoing receive.
send_is_done: boolState of ongoing send.
Auto Trait Implementations§
impl Freeze for TickProgress
impl RefUnwindSafe for TickProgress
impl Send for TickProgress
impl Sync for TickProgress
impl Unpin for TickProgress
impl UnwindSafe for TickProgress
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