⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

Testable

Trait Testable 

Source
pub trait Testable {
    // Required method
    fn run(&self) -> Result<(), KernelError>;
}
Expand description

Trait that all testable functions must implement

Required Methods§

Source

fn run(&self) -> Result<(), KernelError>

Implementors§

Source§

impl<T> Testable for T
where T: Fn() -> Result<(), KernelError>,