pub trait Randomizer {
// Required method
fn table(&self) -> &[u8] ⓘ;
// Provided method
fn apply(&self, buffer: &mut [u8]) { ... }
}Expand description
A trait for applying a specific CCSDS randomization algorithm.
pub trait Randomizer {
// Required method
fn table(&self) -> &[u8] ⓘ;
// Provided method
fn apply(&self, buffer: &mut [u8]) { ... }
}A trait for applying a specific CCSDS randomization algorithm.