Enum chunks::Chunk[][src]

pub enum Chunk<S: Store> {
    Good {
        save: bool,
        value: S::Value,
    },
    Bad,
}

A chunk. Don't touch its insides unless you know what you're doing!

Variants

A chunk that loaded successfully.

Fields of Good

Whether the chunk needs to be saved.

The stuff you care about.

Take a guess.

Methods

impl<S: Store> Chunk<S>
[src]

Read some stuff.

Make some changes.

Auto Trait Implementations

impl<S> Send for Chunk<S> where
    <S as Store>::Value: Send

impl<S> Sync for Chunk<S> where
    <S as Store>::Value: Sync