pub struct PartialResult(/* private fields */);
Expand description
Partially-parsed result and errors.
Implementations§
Source§impl PartialResult
impl PartialResult
Sourcepub fn into_inner(self) -> (Exif, Vec<Error>)
pub fn into_inner(self) -> (Exif, Vec<Error>)
Returns partially-parsed Exif
and ignored Error
s.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PartialResult
impl !RefUnwindSafe for PartialResult
impl Send for PartialResult
impl Sync for PartialResult
impl Unpin for PartialResult
impl !UnwindSafe for PartialResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more