pub trait ToArray{
// Provided method
fn to_array(self) -> Array { ... }
}
Expand description
This convenience trait allows quick way to wrap any RefOr<Schema>
with Array
schema.
Provided Methods§
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.