pub struct Slot {
pub token: usize,
pub id: MessageId,
pub root: bool,
pub joined: bool,
pub chans: HashSet<String>,
pub share_chans: HashSet<String>,
pub bind: HashSet<usize>,
pub bound: HashSet<usize>,
pub wire: Wire<Message>,
}Fields§
§token: usize§id: MessageId§root: bool§joined: bool§chans: HashSet<String>§bind: HashSet<usize>§bound: HashSet<usize>§wire: Wire<Message>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Slot
impl !RefUnwindSafe for Slot
impl Send for Slot
impl !Sync for Slot
impl Unpin for Slot
impl !UnwindSafe for Slot
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