pub trait MapperFlushable {
    fn new<T: VirtualAddress>(page: PageWith<T>) -> Self;
fn flush(self);
fn ignore(self); }

Required methods

Create a new flush promise

Flush the page from the TLB to ensure that the newest mapping is used.

Don’t flush the TLB and silence the “must be used” warning.

Implementors