//! Contains a wrapper for a function that implements `Debug`.
usecore::fmt;/// A wrapper for a function that implements `Debug`.
pubstructWrapDebug<F:Fn(&mutfmt::Formatter)->fmt::Result>(pub F);impl<F:Fn(&mutfmt::Formatter)->fmt::Result>fmt::Debug forWrapDebug<F>{fnfmt(&self, f:&mutfmt::Formatter)->fmt::Result{(self.0)(f)}}