Trait vm_memory::bitmap::BitmapSlice

source ·
pub trait BitmapSlice: Bitmap + Clone + Debug + for<'a> WithBitmapSlice<'a, S = Self> { }
Expand description

Trait used to represent that a BitmapSlice is a Bitmap itself, but also satisfies the restriction that slices created from it have the same type as Self.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl BitmapSlice for ()

source§

impl<B: BitmapSlice> BitmapSlice for Option<B>

Implementors§