pub trait ReactiveBytes {
// Required method
fn as_bytes(&mut self, ctx: &LogFileContext) -> &[u8] ⓘ;
}Expand description
Some bytes whose value might be dependent on the file it is written to.
Required Methods§
fn as_bytes(&mut self, ctx: &LogFileContext) -> &[u8] ⓘ
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".