Lines Matching defs:fmt
92 use std::fmt;
1751 impl fmt::Debug for SslContext {
1752 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1753 write!(fmt, "SslContext")
2063 impl fmt::Debug for SslCipherRef {
2064 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2065 write!(fmt, "{}", self.name())
2206 impl fmt::Debug for Ssl {
2207 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2208 fmt::Debug::fmt(&**self, fmt)
2303 impl fmt::Debug for SslRef {
2304 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2305 fmt.debug_struct("Ssl")
3471 impl<S> fmt::Debug for SslStream<S>
3473 S: fmt::Debug,
3475 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
3476 fmt.debug_struct("SslStream")