Explain the bits of UndefMask

This commit is contained in:
Oliver Scherer 2019-03-12 14:43:49 +01:00
parent 60fde17a29
commit 1ae131211b

View file

@ -613,6 +613,8 @@ impl<Tag> DerefMut for Relocations<Tag> {
type Block = u64;
/// A bitmask where each bit refers to the byte with the same index. If the bit is `true`, the byte
/// is defined. If it is `false` the byte is undefined.
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
pub struct UndefMask {
blocks: Vec<Block>,