pub struct HandleSet(/* private fields */);Expand description
A set of handle IDs, represented as a bitset.
Supports up to 64 handles. Construct via HandleId operators:
ⓘ
let set = imu | gps | lidar; // HandleSet from 3 handlesImplementations§
Trait Implementations§
impl Copy for HandleSet
impl Eq for HandleSet
impl StructuralPartialEq for HandleSet
Auto Trait Implementations§
impl Freeze for HandleSet
impl RefUnwindSafe for HandleSet
impl Send for HandleSet
impl Sync for HandleSet
impl Unpin for HandleSet
impl UnsafeUnpin for HandleSet
impl UnwindSafe for HandleSet
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