pub trait InlineOutput: ToOutput {
// Provided method
fn slice_to_output(slice: &[Self], output: &mut dyn Output)
where Self: Sized { ... }
}Expand description
Marker trait indicating that ToOutput result cannot be extended.
Provided Methods§
fn slice_to_output(slice: &[Self], output: &mut dyn Output)where
Self: Sized,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.