1 2 3 4 5 6 7
pub trait FromLibExif<T> { fn from_libexif(inner: T) -> Self; } pub trait ToLibExif<T> { fn to_libexif(&self) -> T; }