Plog implementation for Option
defines some methods to work with plog using std::option::Option wrapper
Due to adhension to method chains, every method consumes and return the ownership
like Option::map, Option::and_then, etc.
Plog implementation for Result
defines some methods to work with plog using std::result::Result wrapper
Due to adhension to method chains, every method consumes and return the ownership
like Result::map, Result::inspect, etc.