o2o 0.5.1-beta1

Object to Object mapper for Rust. Derive '(Try)From' and '(Try)Into' traits.
Documentation
1
2
3
4
5
6
7
8
pub trait IntoExisting<T> {
    fn into_existing(self, other: &mut T);
}

pub trait TryIntoExisting<T> {
    type Error;
    fn try_into_existing(self, other: &mut T) -> Result<(), Self::Error>;
}