pub trait BundleSource: Sealed {
type Content<'a>: AsRef<[u8]>
where Self: 'a;
}Expand description
Read operations required by KibanaBundle.
This trait is sealed. Use Filesystem or Entries as the source.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".