Trait fractal_dto::FromDTO [] [src]

pub trait FromDTO<D: DTO>: Sized {
    fn from_dto(dto: D) -> Result<Self, FromDTOError>;
}

creates an object from a dto

Required Methods

the from dto wrapper

Implementors