Explain the bits of UndefMask
This commit is contained in:
parent
60fde17a29
commit
1ae131211b
1 changed files with 2 additions and 0 deletions
|
|
@ -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>,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue