flusso-schema-core 0.4.0

Shared domain vocabulary for flusso: values, validated newtypes, and index mappings.
Documentation
1
2
3
4
5
pub trait ParseFrom<T>: Sized {
    type Error;

    fn try_parse(value: T) -> Result<Self, Self::Error>;
}