caco 0.5.33

library for dealing with doom [et al] wad files
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::agnostic::Clump;

/// [`Clump`] but mutable.
pub trait ClumpMut: Clump {
    /// Set a new name.
    fn rename(&mut self, s: impl AsRef<str>);

    /// Set new contents.
    fn replace(&mut self, b: &[u8]);
}