Lines Matching full:fmt
5 use std::fmt;
19 impl fmt::Display for OpensslString {
20 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
21 fmt::Display::fmt(&**self, f) in fmt()
25 impl fmt::Debug for OpensslString {
26 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
27 fmt::Debug::fmt(&**self, f) in fmt()
70 impl fmt::Display for OpensslStringRef {
71 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
72 fmt::Display::fmt(&**self, f) in fmt()
76 impl fmt::Debug for OpensslStringRef {
77 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
78 fmt::Debug::fmt(&**self, f) in fmt()