pub struct EmptyAsNone;
Expand description
Text codec which returns None
if the input to decode is the empty string, instead of
attempting to decode it.
Particularly useful when parsing Option<T>
on #[xml(text)]
, which does not support
Option<_>
otherwise.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EmptyAsNone
impl RefUnwindSafe for EmptyAsNone
impl Send for EmptyAsNone
impl Sync for EmptyAsNone
impl Unpin for EmptyAsNone
impl UnwindSafe for EmptyAsNone
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