struct RxFields<T> {
list: Rx<T>,
rx_closed: bool,
}
Expand description
Fields only accessed by Rx
handle.
Fields§
§list: Rx<T>
Channel receiver. This field is only accessed by the Receiver
type.
rx_closed: bool
true
if Rx::close
is called.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for RxFields<T>
impl<T> !RefUnwindSafe for RxFields<T>
impl<T> !Send for RxFields<T>
impl<T> !Sync for RxFields<T>
impl<T> Unpin for RxFields<T>
impl<T> !UnwindSafe for RxFields<T>
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