Lines Matching defs:fmt
10 use std::fmt;
207 impl<'a, 'b: 'a, 'kvs> Visitor<'kvs> for fmt::DebugMap<'a, 'b> {
214 impl<'a, 'b: 'a, 'kvs> Visitor<'kvs> for fmt::DebugList<'a, 'b> {
221 impl<'a, 'b: 'a, 'kvs> Visitor<'kvs> for fmt::DebugSet<'a, 'b> {
228 impl<'a, 'b: 'a, 'kvs> Visitor<'kvs> for fmt::DebugTuple<'a, 'b> {
409 impl<S> fmt::Debug for AsMap<S>
413 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
415 self.0.visit(&mut f).map_err(|_| fmt::Error)?;
448 impl<S> fmt::Debug for AsList<S>
452 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
454 self.0.visit(&mut f).map_err(|_| fmt::Error)?;