1 2 3 4 5 6 7
use syn::Variant; use Result; pub trait FromVariant: Sized { fn from_variant(variant: &Variant) -> Result<Self>; }