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