struct Inner<T> {
head: Option<NonNull<Link<T>>>,
tail: Option<NonNull<Link<T>>>,
next: Option<NonNull<Link<T>>>,
len: usize,
notified: usize,
}Fields§
§head: Option<NonNull<Link<T>>>The head of the linked list.
tail: Option<NonNull<Link<T>>>The tail of the linked list.
next: Option<NonNull<Link<T>>>The first unnotified listener.
len: usizeTotal number of listeners.
notified: usizeThe number of notified listeners.
Implementations§
Auto Trait Implementations§
impl<T> Freeze for Inner<T>
impl<T> !RefUnwindSafe for Inner<T>
impl<T> !Send for Inner<T>
impl<T> !Sync for Inner<T>
impl<T> Unpin for Inner<T>
impl<T> !UnwindSafe for Inner<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