fpu.rs 127 B

123456
  1. #[doc(notable_trait)]
  2. pub trait RawFpuState: Copy {
  3. fn new() -> Self;
  4. fn save(&mut self);
  5. fn restore(&mut self);
  6. }