pub trait ParseArray {
type Array;
type Error;
// Required method
fn parse_array(&self) -> Result<Self::Array, Self::Error>;
}Expand description
Types that implement this trait can parse its content into an array.
Required Associated Types§
Required Methods§
Sourcefn parse_array(&self) -> Result<Self::Array, Self::Error>
fn parse_array(&self) -> Result<Self::Array, Self::Error>
Parse an array.