pub trait TryFromDnaProperties {
    type Error;

    // Required method
    fn try_from_dna_properties() -> Result<Self, Self::Error>
       where Self: Sized;
}
Expand description

Trait to convert from dna properties into specified type

Required Associated Types§

source

type Error

The error associated with this conversion.

Required Methods§

source

fn try_from_dna_properties() -> Result<Self, Self::Error>
where Self: Sized,

Attempts to deserialize DNA properties into specified type

Implementors§