[][src]Trait guts::TryFromGuts

pub trait TryFromGuts: Guts {
    type Error;
    fn try_from_guts(guts: Self::Guts) -> Result<Self, Self::Error>;
}

Safely constructing values from their guts with possible failure.

Associated Types

type Error

Loading content...

Required methods

fn try_from_guts(guts: Self::Guts) -> Result<Self, Self::Error>

Constructs a value from its guts, or fails.

Loading content...

Implementors

Loading content...