macro_rules! impl_option_try_from_sexp {
($t:ty) => { ... };
}Expand description
Implement TryFromSexp for Option<T> where T already implements TryFromSexp.
NULL → None, otherwise delegates to T::try_from_sexp and wraps in Some.
macro_rules! impl_option_try_from_sexp {
($t:ty) => { ... };
}Implement TryFromSexp for Option<T> where T already implements TryFromSexp.
NULL → None, otherwise delegates to T::try_from_sexp and wraps in Some.