pub trait ToArray: Sized{
// Provided method
fn to_array(self) -> Array { ... }
}Available on crate feature
openapi and native only.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".