/// Types that implement this trait can parse its content into an array.
pubtraitParseArray{/// Type of array when parsing succeeds.
typeArray;/// Type of error when parsing fails.
typeError;/// Parse an array.
fnparse_array(&self)->Result<Self::Array, Self::Error>;}