• Home
  • Raw
  • Download

Lines Matching full:fmt

2 use std::fmt;
118 impl<T> fmt::Debug for SendError<T> {
119 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
120 "SendError(..)".fmt(f) in fmt()
124 impl<T> fmt::Display for SendError<T> {
125 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
126 "sending on a disconnected channel".fmt(f) in fmt()
152 impl<T> fmt::Debug for TrySendError<T> {
153 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
155 TrySendError::Full(..) => "Full(..)".fmt(f), in fmt()
156 TrySendError::Disconnected(..) => "Disconnected(..)".fmt(f), in fmt()
161 impl<T> fmt::Display for TrySendError<T> {
162 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
164 TrySendError::Full(..) => "sending on a full channel".fmt(f), in fmt()
165 TrySendError::Disconnected(..) => "sending on a disconnected channel".fmt(f), in fmt()
218 impl<T> fmt::Debug for SendTimeoutError<T> {
219 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
220 "SendTimeoutError(..)".fmt(f) in fmt()
224 impl<T> fmt::Display for SendTimeoutError<T> {
225 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
227 SendTimeoutError::Timeout(..) => "timed out waiting on send operation".fmt(f), in fmt()
228 SendTimeoutError::Disconnected(..) => "sending on a disconnected channel".fmt(f), in fmt()
282 impl fmt::Display for RecvError {
283 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
284 "receiving on an empty and disconnected channel".fmt(f) in fmt()
290 impl fmt::Display for TryRecvError {
291 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
293 TryRecvError::Empty => "receiving on an empty channel".fmt(f), in fmt()
294 TryRecvError::Disconnected => "receiving on an empty and disconnected channel".fmt(f), in fmt()
329 impl fmt::Display for RecvTimeoutError {
330 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
332 RecvTimeoutError::Timeout => "timed out waiting on receive operation".fmt(f), in fmt()
333 RecvTimeoutError::Disconnected => "channel is empty and disconnected".fmt(f), in fmt()
368 impl fmt::Display for TrySelectError {
369 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
370 "all operations in select would block".fmt(f) in fmt()
376 impl fmt::Display for SelectTimeoutError {
377 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
378 "timed out waiting on select".fmt(f) in fmt()