pub enum Subsystem {
Executor,
Fs,
Clock,
Alloc,
Network,
Process,
Storage,
Custom,
}Expand description
Subsystem tags for event categorisation.
Variants§
Executor
Async executor / task scheduling.
Fs
Virtual file system.
Clock
Logical clock / timers.
Alloc
Memory allocator.
Network
Network (existing distributed sim).
Process
Subprocess / process spawning.
Storage
Storage (existing KV sim).
Custom
User / custom subsystem.
Trait Implementations§
impl Copy for Subsystem
impl Eq for Subsystem
impl StructuralPartialEq for Subsystem
Auto Trait Implementations§
impl Freeze for Subsystem
impl RefUnwindSafe for Subsystem
impl Send for Subsystem
impl Sync for Subsystem
impl Unpin for Subsystem
impl UnsafeUnpin for Subsystem
impl UnwindSafe for Subsystem
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