pub trait Fix: Sized {
    fn fix(&mut self);

    fn fixed(self) -> Self { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors