1/// Wrapping direction for buffer operations 2#[derive(Debug, Clone, Copy, PartialEq, Eq)] 3pub enum WrappingDirection { 4 /// Wrap underlying tokens to wrapped tokens 5 Wrap = 0, 6 /// Unwrap wrapped tokens to underlying tokens 7 Unwrap = 1, 8}