pub struct IdleArgs {
pub core: u8,
pub resources: Resources,
pub spawn: Set<Ident>,
pub schedule: Set<Ident>,
/* private fields */
}
Expand description
idle
context metadata
Fields§
§core: u8
Which core this context belongs to?
resources: Resources
Resources that can be accessed from this context
spawn: Set<Ident>
Software tasks that can be spawned from this context
schedule: Set<Ident>
Software tasks that can be scheduled from this context
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IdleArgs
impl RefUnwindSafe for IdleArgs
impl !Send for IdleArgs
impl !Sync for IdleArgs
impl Unpin for IdleArgs
impl UnwindSafe for IdleArgs
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