v0.6.0
- Support logging on
#![no_std]
with thedfmt
feature flag - Remove
swallow
logging methods - Refactor logging traits
- Add
ConsumeDisplay
trait - Change the format of the
coerce!
macro
oldnewlet val = coerce!(setx => { Ok(val) => val, Err(SetX::X) => {}, // handle disjointedness { Err(SetX) => return Err(SetY) } // terminal coercion })?;
let val = coerce!{ setx, Ok(val) => val, Err(SetX::X) => {}, // handle disjointedness { Err(SetX) => return Err(SetY) } // terminal coercion }?;
Full Changelog: v0.5.4...v0.6.0