Trait action_core::ParseInput
source · pub trait ParseInput: Sized {
type Error: Error;
// Required method
fn parse(value: String) -> Result<Self, Self::Error>;
}
pub trait ParseInput: Sized {
type Error: Error;
// Required method
fn parse(value: String) -> Result<Self, Self::Error>;
}