Trait Debug

Source
pub trait Debug {
    // Provided method
    fn debug(&self) -> Vec<DebugContent> { ... }
}
Expand description

Runtime representation of any chunk type. It is perfectly valid to not return anything if the data is not useful for debug views.

Provided Methods§

Source

fn debug(&self) -> Vec<DebugContent>

Render the elements of this chunk type.

Implementors§

Source§

impl<P: Reducible, const SIZE: u8, const SALT: u64> Debug for ReducedUniformPoint<P, SIZE, SALT>

Source§

impl<P: Reducible, const SIZE: u8, const SALT: u64> Debug for UniformPoint<P, SIZE, SALT>