pub trait Container {
// Required method
fn fields<F, T>(&self, f: F) -> Result<T>
where F: FnOnce(&[&dyn Encodable]) -> Result<T>;
}Expand description
Multiple encodables in a container.
A container implementing Tagged has a blanked implementation of Encodable.
Required Methods§
Object Safety§
This trait is not object safe.