Trait otter_api_tests::shapelib::Debug1.0.0[][src]

pub trait Debug {
    pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}

? formatting.

Debug should format the output in a programmer-facing, debugging context.

Generally speaking, you should just derive a Debug implementation.

When used with the alternate format specifier #?, the output is pretty-printed.

For more information on formatters, see the module-level documentation.

This trait can be used with #[derive] if all fields implement Debug. When derived for structs, it will use the name of the struct, then {, then a comma-separated list of each field’s name and Debug value, then }. For enums, it will use the name of the variant and, if applicable, (, then the Debug values of the fields, then ).

Stability

Derived Debug formats are not stable, and so may change with future Rust versions. Additionally, Debug implementations of types provided by the standard library (libstd, libcore, liballoc, etc.) are not stable, and may also change with future Rust versions.

Examples

Deriving an implementation:

#[derive(Debug)]
struct Point {
    x: i32,
    y: i32,
}

let origin = Point { x: 0, y: 0 };

assert_eq!(format!("The origin is: {:?}", origin), "The origin is: Point { x: 0, y: 0 }");

Manually implementing:

use std::fmt;

struct Point {
    x: i32,
    y: i32,
}

impl fmt::Debug for Point {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Point")
         .field("x", &self.x)
         .field("y", &self.y)
         .finish()
    }
}

let origin = Point { x: 0, y: 0 };

assert_eq!(format!("The origin is: {:?}", origin), "The origin is: Point { x: 0, y: 0 }");

There are a number of helper methods on the Formatter struct to help you with manual implementations, such as debug_struct.

Debug implementations using either derive or the debug builder API on Formatter support pretty-printing using the alternate flag: {:#?}.

Pretty-printing with #?:

#[derive(Debug)]
struct Point {
    x: i32,
    y: i32,
}

let origin = Point { x: 0, y: 0 };

assert_eq!(format!("The origin is: {:#?}", origin),
"The origin is: Point {
    x: 0,
    y: 0,
}");

Required methods

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

Examples

use std::fmt;

struct Position {
    longitude: f32,
    latitude: f32,
}

impl fmt::Debug for Position {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_tuple("")
         .field(&self.longitude)
         .field(&self.latitude)
         .finish()
    }
}

let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{:?}", position), "(1.987, 2.983)");

assert_eq!(format!("{:#?}", position), "(
    1.987,
    2.983,
)");
Loading content...

Implementations on Foreign Types

impl Debug for UdpSocket[src]

impl Debug for SocketAddrV6[src]

impl Debug for BacktraceFrame[src]

impl Debug for TcpStream[src]

impl<T> Debug for PoisonError<T>[src]

impl Debug for TcpListener[src]

impl Debug for ExitCode[src]

impl Debug for FromBytesWithNulError[src]

impl<'_, T> Debug for MutexGuard<'_, T> where
    T: Debug + ?Sized
[src]

impl Debug for FromVecWithNulError[src]

impl Debug for IpAddr[src]

impl Debug for WaitTimeoutResult[src]

impl Debug for StripPrefixError[src]

impl Debug for Once[src]

impl Debug for ExitStatus[src]

impl<'a> Debug for Ancestors<'a>[src]

impl Debug for Backtrace[src]

impl Debug for SocketAddrV4[src]

impl Debug for BarrierWaitResult[src]

impl<'_, T, S> Debug for Difference<'_, T, S> where
    S: BuildHasher,
    T: Debug + Eq + Hash
[src]

impl Debug for IntoStringError[src]

impl Debug for NulError[src]

impl<T> Debug for TryLockError<T>[src]

impl Debug for System[src]

impl<T> Debug for RwLock<T> where
    T: Debug + ?Sized
[src]

impl<'_, K> Debug for Iter<'_, K> where
    K: Debug
[src]

impl Debug for Ipv6Addr[src]

impl<'_> Debug for Display<'_>[src]

impl<'a> Debug for PrefixComponent<'a>[src]

impl<'_> Debug for Iter<'_>[src]

impl<'a, K, F> Debug for DrainFilter<'a, K, F> where
    F: FnMut(&K) -> bool
[src]

impl<'_, T, S> Debug for Intersection<'_, T, S> where
    S: BuildHasher,
    T: Debug + Eq + Hash
[src]

impl Debug for ChildStdout[src]

impl<T> Debug for Mutex<T> where
    T: Debug + ?Sized
[src]

impl<'a> Debug for Prefix<'a>[src]

impl<'a> Debug for CommandEnvs<'a>[src]

impl Debug for ChildStdin[src]

impl<'a> Debug for CommandArgs<'a>[src]

impl<'a> Debug for Component<'a>[src]

impl Debug for CStr[src]

impl Debug for SocketAddr[src]

impl<'_> Debug for Components<'_>[src]

impl Debug for CString[src]

impl Debug for ChildStderr[src]

impl Debug for Condvar[src]

impl<T, F> Debug for SyncLazy<T, F> where
    T: Debug
[src]

impl<T> Debug for SyncOnceCell<T> where
    T: Debug
[src]

impl Debug for Ipv6MulticastScope[src]

impl<'_, K> Debug for Drain<'_, K> where
    K: Debug
[src]

impl Debug for Barrier[src]

impl Debug for BacktraceStatus[src]

impl<T> Debug for AssertUnwindSafe<T> where
    T: Debug
[src]

impl Debug for OnceState[src]

impl<'_, T> Debug for RwLockWriteGuard<'_, T> where
    T: Debug
[src]

impl Debug for Ipv4Addr[src]

impl<K> Debug for IntoIter<K> where
    K: Debug
[src]

impl Debug for Path[src]

impl<'a> Debug for Chain<'a>[src]

impl Debug for Shutdown[src]

impl Debug for OsString[src]

impl<'_, T, S> Debug for SymmetricDifference<'_, T, S> where
    S: BuildHasher,
    T: Debug + Eq + Hash
[src]

impl Debug for Output[src]

impl<'_, T, S> Debug for Union<'_, T, S> where
    S: BuildHasher,
    T: Debug + Eq + Hash
[src]

impl Debug for AddrParseError[src]

impl<'a> Debug for Incoming<'a>[src]

impl<'_, T> Debug for RwLockReadGuard<'_, T> where
    T: Debug
[src]

impl<Ret, A, B, C, D, E, F, G, H> Debug for fn(A, B, C, D, E, F, G, H) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for unsafe fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

impl<Ret, A> Debug for unsafe extern "C" fn(A) -> Ret[src]

impl<Ret, A> Debug for extern "C" fn(A) -> Ret[src]

impl<Ret, A, B, C, D, E> Debug for extern "C" fn(A, B, C, D, E) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G> Debug for extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret[src]

impl<Ret, A, B> Debug for unsafe fn(A, B) -> Ret[src]

impl<Ret, A> Debug for fn(A) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for unsafe fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

impl<Ret, A, B, C, D> Debug for extern "C" fn(A, B, C, D, ...) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret[src]

impl<Ret, A, B, C> Debug for unsafe fn(A, B, C) -> Ret[src]

impl<Ret, A, B> Debug for fn(A, B) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret[src]

impl<T, const N: usize> Debug for [T; N] where
    T: Debug
[src]

impl<Ret, A, B, C, D, E, F> Debug for unsafe fn(A, B, C, D, E, F) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G> Debug for extern "C" fn(A, B, C, D, E, F, G) -> Ret[src]

impl<T> Debug for *const T where
    T: ?Sized
[src]

impl<Ret, A, B, C, D, E, F, G, H, I> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret[src]

impl<Ret, A, B, C, D, E> Debug for unsafe extern "C" fn(A, B, C, D, E) -> Ret[src]

impl<T> Debug for [T] where
    T: Debug
[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret[src]

impl<Ret, A, B, C, D> Debug for unsafe fn(A, B, C, D) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

impl<Ret, A, B> Debug for extern "C" fn(A, B, ...) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G> Debug for fn(A, B, C, D, E, F, G) -> Ret[src]

impl<Ret, A, B> Debug for unsafe extern "C" fn(A, B) -> Ret[src]

impl<Ret, A, B, C, D> Debug for fn(A, B, C, D) -> Ret[src]

impl<T3, T4, T5, T6, T7, T8, T9, T10, T11> Debug for (T3, T4, T5, T6, T7, T8, T9, T10, T11) where
    T3: Debug,
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl<Ret, A, B, C, D, E, F, G, H, I> Debug for unsafe fn(A, B, C, D, E, F, G, H, I) -> Ret[src]

impl Debug for f64[src]

impl<T9, T10, T11> Debug for (T9, T10, T11) where
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl<Ret, A, B, C, D> Debug for extern "C" fn(A, B, C, D) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H> Debug for extern "C" fn(A, B, C, D, E, F, G, H) -> Ret[src]

impl<Ret, A, B, C, D, E, F> Debug for unsafe extern "C" fn(A, B, C, D, E, F, ...) -> Ret[src]

impl<Ret> Debug for extern "C" fn() -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret[src]

impl<Ret, A, B, C> Debug for unsafe extern "C" fn(A, B, C) -> Ret[src]

impl<T5, T6, T7, T8, T9, T10, T11> Debug for (T5, T6, T7, T8, T9, T10, T11) where
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl Debug for u16[src]

impl<T8, T9, T10, T11> Debug for (T8, T9, T10, T11) where
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl<Ret, A> Debug for unsafe fn(A) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret[src]

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Debug for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11) where
    T0: Debug,
    T1: Debug,
    T2: Debug,
    T3: Debug,
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl<Ret, A, B, C> Debug for extern "C" fn(A, B, C, ...) -> Ret[src]

impl<Ret, A, B, C, D> Debug for unsafe extern "C" fn(A, B, C, D, ...) -> Ret[src]

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Debug for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11) where
    T1: Debug,
    T2: Debug,
    T3: Debug,
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl<T4, T5, T6, T7, T8, T9, T10, T11> Debug for (T4, T5, T6, T7, T8, T9, T10, T11) where
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl Debug for ![src]

impl<Ret, A, B, C, D, E, F, G> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

impl<Ret, A> Debug for unsafe extern "C" fn(A, ...) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret[src]

impl<Ret, A, B, C, D, E, F> Debug for extern "C" fn(A, B, C, D, E, F, ...) -> Ret[src]

impl<Ret, A, B, C, D, E, F> Debug for unsafe extern "C" fn(A, B, C, D, E, F) -> Ret[src]

impl Debug for ()[src]

impl Debug for bool[src]

impl Debug for str[src]

impl<Ret> Debug for unsafe fn() -> Ret[src]

impl<Ret, A, B, C, D, E, F, G> Debug for unsafe fn(A, B, C, D, E, F, G) -> Ret[src]

impl<T10, T11> Debug for (T10, T11) where
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl<Ret> Debug for unsafe extern "C" fn() -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret[src]

impl Debug for char[src]

impl<Ret, A, B, C, D, E, F> Debug for fn(A, B, C, D, E, F) -> Ret[src]

impl Debug for i128[src]

impl<Ret, A> Debug for extern "C" fn(A, ...) -> Ret[src]

impl Debug for i8[src]

impl<Ret, A, B, C, D, E> Debug for unsafe extern "C" fn(A, B, C, D, E, ...) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H> Debug for unsafe fn(A, B, C, D, E, F, G, H) -> Ret[src]

impl Debug for f32[src]

impl<T11> Debug for (T11,) where
    T11: Debug + ?Sized
[src]

impl<Ret, A, B, C, D, E> Debug for fn(A, B, C, D, E) -> Ret[src]

impl<Ret, A, B, C, D, E, F> Debug for extern "C" fn(A, B, C, D, E, F) -> Ret[src]

impl Debug for u32[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for fn(A, B, C, D, E, F, G, H, I, J) -> Ret[src]

impl<Ret> Debug for fn() -> Ret[src]

impl<'_, T> Debug for &'_ mut T where
    T: Debug + ?Sized
[src]

impl<T7, T8, T9, T10, T11> Debug for (T7, T8, T9, T10, T11) where
    T7: Debug,
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl Debug for u64[src]

impl<Ret, A, B, C, D, E, F, G, H> Debug for extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret[src]

impl Debug for isize[src]

impl<Ret, A, B, C, D, E, F, G, H, I> Debug for fn(A, B, C, D, E, F, G, H, I) -> Ret[src]

impl Debug for u8[src]

impl<Ret, A, B, C> Debug for unsafe extern "C" fn(A, B, C, ...) -> Ret[src]

impl Debug for usize[src]

impl<'_, T> Debug for &'_ T where
    T: Debug + ?Sized
[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret[src]

impl<Ret, A, B, C> Debug for extern "C" fn(A, B, C) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for unsafe fn(A, B, C, D, E, F, G, H, I, J) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret[src]

impl<Ret, A, B, C, D, E> Debug for extern "C" fn(A, B, C, D, E, ...) -> Ret[src]

impl<T> Debug for *mut T where
    T: ?Sized
[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret[src]

impl Debug for i32[src]

impl<Ret, A, B, C> Debug for fn(A, B, C) -> Ret[src]

impl Debug for i16[src]

impl Debug for i64[src]

impl<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Debug for (T2, T3, T4, T5, T6, T7, T8, T9, T10, T11) where
    T2: Debug,
    T3: Debug,
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl<Ret, A, B> Debug for unsafe extern "C" fn(A, B, ...) -> Ret[src]

impl<T6, T7, T8, T9, T10, T11> Debug for (T6, T7, T8, T9, T10, T11) where
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug,
    T10: Debug,
    T11: Debug + ?Sized
[src]

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

impl Debug for u128[src]

impl<Ret, A, B, C, D> Debug for unsafe extern "C" fn(A, B, C, D) -> Ret[src]

impl<Ret, A, B, C, D, E> Debug for unsafe fn(A, B, C, D, E) -> Ret[src]

impl<Ret, A, B> Debug for extern "C" fn(A, B) -> Ret[src]

impl Debug for TryReserveError[src]

impl<'_, T> Debug for Cursor<'_, T> where
    T: Debug
[src]

impl<'a, I, A> Debug for Splice<'a, I, A> where
    A: 'a + Debug + Allocator,
    I: 'a + Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl Debug for FromUtf16Error[src]

impl<'_, T> Debug for CursorMut<'_, T> where
    T: Debug
[src]

impl<T> Debug for LinkedList<T> where
    T: Debug
[src]

impl<'_, T> Debug for IterMut<'_, T> where
    T: Debug
[src]

impl<'_, T, A> Debug for Drain<'_, T, A> where
    T: Debug,
    A: Allocator
[src]

impl<T> Debug for Rc<T> where
    T: Debug + ?Sized
[src]

impl<'_, T> Debug for Iter<'_, T> where
    T: Debug
[src]

impl<'_, T> Debug for IterMut<'_, T> where
    T: Debug
[src]

impl<T> Debug for IntoIterSorted<T> where
    T: Debug
[src]

impl<T, A> Debug for IntoIter<T, A> where
    T: Debug,
    A: Allocator
[src]

impl<'_, T> Debug for Drain<'_, T> where
    T: Debug
[src]

impl<T, A> Debug for Box<T, A> where
    T: Debug + ?Sized,
    A: Allocator
[src]

impl<T> Debug for IntoIter<T> where
    T: Debug
[src]

impl<T> Debug for Weak<T> where
    T: Debug + ?Sized
[src]

impl Debug for String[src]

impl<'_, T, F> Debug for DrainFilter<'_, T, F> where
    T: Debug,
    F: FnMut(&mut T) -> bool
[src]

impl<T> Debug for IntoIter<T> where
    T: Debug
[src]

impl Debug for Global[src]

impl<'_, T> Debug for Iter<'_, T> where
    T: Debug
[src]

impl<T> Debug for Weak<T> where
    T: Debug + ?Sized
[src]

impl<'a, T> Debug for Drain<'a, T> where
    T: 'a + Debug
[src]

impl Debug for FromUtf8Error[src]

impl<'_> Debug for Drain<'_>[src]

impl<'a, T> Debug for DrainSorted<'a, T> where
    T: Debug + Ord
[src]

impl<'_, T> Debug for Iter<'_, T> where
    T: Debug
[src]

impl<T> Debug for IntoIter<T> where
    T: Debug
[src]

impl<'a, T, F, A> Debug for DrainFilter<'a, T, F, A> where
    T: Debug,
    A: Debug + Allocator,
    F: Debug + FnMut(&mut T) -> bool
[src]

impl<T, A> Debug for Vec<T, A> where
    T: Debug,
    A: Allocator
[src]

impl<T> Debug for BinaryHeap<T> where
    T: Debug
[src]

impl<'_, T> Debug for PeekMut<'_, T> where
    T: Ord + Debug
[src]

impl Debug for _Unwind_Reason_Code

impl Debug for MgmtPlayerInfo[src]

impl Debug for MgmtPlayerDetails[src]

impl Debug for Spec[src]

impl Debug for MgmtGamePieceInfo[src]

impl Debug for Error[src]

impl Debug for MgmtGamePieceVisibleInfo[src]

impl Debug for AccountDetails[src]

impl Debug for MgmtGameResponseGameInfo[src]

impl Debug for NoneAsEmptyString[src]

impl Debug for Same[src]

impl<FORMAT, STRICTNESS> Debug for TimestampMicroSeconds<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<FORMAT, STRICTNESS> Debug for TimestampNanoSeconds<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl Debug for Strict[src]

impl Debug for BytesOrString[src]

impl Debug for DisplayFromStr[src]

impl Debug for Uppercase[src]

impl<FORMAT, STRICTNESS> Debug for DurationSeconds<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<FORMAT, STRICTNESS> Debug for DurationMicroSeconds<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<FORMAT, STRICTNESS> Debug for DurationNanoSecondsWithFrac<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl Debug for Lowercase[src]

impl<FORMAT, STRICTNESS> Debug for DurationMilliSecondsWithFrac<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<FORMAT, STRICTNESS> Debug for TimestampMilliSecondsWithFrac<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<T> Debug for As<T> where
    T: Debug + ?Sized
[src]

impl<T, FORMAT> Debug for OneOrMany<T, FORMAT> where
    T: Debug,
    FORMAT: Debug + Format
[src]

impl<'a, T, U> Debug for SerializeAsWrap<'a, T, U> where
    T: Debug + ?Sized,
    U: Debug + ?Sized
[src]

impl<FORMAT, STRICTNESS> Debug for DurationMilliSeconds<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl Debug for Flexible[src]

impl<T> Debug for PickFirst<T> where
    T: Debug
[src]

impl Debug for SpaceSeparator[src]

impl Debug for CommaSeparator[src]

impl<FORMAT, STRICTNESS> Debug for DurationMicroSecondsWithFrac<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl Debug for PreferOne[src]

impl<FORMAT, STRICTNESS> Debug for DurationSecondsWithFrac<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl Debug for Bytes[src]

impl Debug for PreferMany[src]

impl<FORMAT, STRICTNESS> Debug for DurationNanoSeconds<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<T> Debug for DefaultOnError<T> where
    T: Debug
[src]

impl<FORMAT, STRICTNESS> Debug for TimestampSeconds<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<Sep, T> Debug for StringWithSeparator<Sep, T> where
    T: Debug,
    Sep: Debug
[src]

impl<FORMAT, STRICTNESS> Debug for TimestampNanoSecondsWithFrac<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<FORMAT, STRICTNESS> Debug for TimestampMilliSeconds<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<FORMAT, STRICTNESS> Debug for TimestampSecondsWithFrac<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<FORMAT, STRICTNESS> Debug for TimestampMicroSecondsWithFrac<FORMAT, STRICTNESS> where
    FORMAT: Debug + Format,
    STRICTNESS: Debug + Strictness
[src]

impl<T> Debug for DefaultOnNull<T> where
    T: Debug
[src]

impl<T, U> Debug for DeserializeAsWrap<T, U> where
    T: Debug,
    U: Debug
[src]

impl Debug for FloatErrorKind[src]

impl Debug for ParseFloatError[src]

impl Debug for Timespec[src]

impl Debug for Tm[src]

impl Debug for SteadyTime[src]

impl Debug for ParseError[src]

impl Debug for OutOfRangeError[src]

impl<'a> Debug for TmFmt<'a>[src]

impl<A> Debug for ExtendedGcd<A> where
    A: Debug
[src]

impl<S> Debug for AhoCorasick<S> where
    S: Debug + StateID, 

impl Debug for MatchKind

impl Debug for ErrorKind

impl Debug for Builder

impl Debug for MatchKind

impl<'a, 'b, S> Debug for FindIter<'a, 'b, S> where
    S: 'a + Debug + StateID, 

impl Debug for Searcher

impl Debug for Error

impl<'s, 'h> Debug for FindIter<'s, 'h>

impl Debug for Config

impl Debug for AhoCorasickBuilder

impl<'a, R, S> Debug for StreamFindIter<'a, R, S> where
    S: 'a + Debug + StateID,
    R: Debug

impl<'a, 'b, S> Debug for FindOverlappingIter<'a, 'b, S> where
    S: 'a + Debug + StateID, 

impl Debug for Match

impl Debug for UnicodeWordError

impl Debug for Group

impl Debug for RepetitionKind

impl Debug for ClassUnicode

impl Debug for Flag

impl Debug for Repetition

impl Debug for ClassPerl

impl Debug for Utf8Range

impl Debug for Error

impl Debug for ClassSetBinaryOp

impl Debug for RepetitionRange

impl Debug for WithComments

impl Debug for GroupKind

impl<'a> Debug for ClassUnicodeIter<'a>

impl Debug for Parser

impl Debug for Assertion

impl Debug for Hir

impl Debug for SpecialLiteralKind

impl Debug for GroupKind

impl Debug for ClassSetItem

impl Debug for ClassUnicode

impl Debug for Literal

impl Debug for CaseFoldError

impl Debug for Literal

impl Debug for Position

impl Debug for CaptureName

impl Debug for Anchor

impl Debug for HirKind

impl Debug for Comment

impl Debug for ClassSetRange

impl Debug for ClassUnicodeOpKind

impl Debug for ClassUnicodeKind

impl Debug for ClassPerlKind

impl Debug for ParserBuilder

impl Debug for AssertionKind

impl Debug for ClassBytes

impl Debug for TranslatorBuilder

impl Debug for ClassBytesRange

impl Debug for Printer

impl Debug for Class

impl Debug for SetFlags

impl Debug for FlagsItem

impl Debug for Class

impl Debug for Utf8Sequences

impl Debug for RepetitionOp

impl Debug for Span

impl Debug for Parser

impl Debug for FlagsItemKind

impl Debug for Ast

impl Debug for ClassAsciiKind

impl Debug for Literals

impl Debug for Utf8Sequence

impl Debug for ClassAscii

impl<'a> Debug for ClassBytesIter<'a>

impl Debug for ClassSetBinaryOpKind

impl Debug for Flags

impl Debug for ClassSetUnion

impl Debug for LiteralKind

impl Debug for RepetitionKind

impl Debug for Literal

impl Debug for HexLiteralKind

impl Debug for Group

impl Debug for ClassSet

impl Debug for ErrorKind

impl Debug for RepetitionRange

impl Debug for ParserBuilder

impl Debug for Repetition

impl Debug for Alternation

impl Debug for Concat

impl Debug for ErrorKind

impl Debug for Printer

impl Debug for Translator

impl Debug for WordBoundary

impl Debug for ClassBracketed

impl Debug for ClassUnicodeRange

impl Debug for Error

impl Debug for Error

impl Debug for Rfc3339Timestamp[src]

impl Debug for Timestamp[src]

impl Debug for Duration[src]

impl Debug for Error[src]

impl Debug for Error[src]

impl Debug for FormattedDuration[src]

impl Debug for ColorSpec

impl Debug for ParseColorError

impl Debug for Color

impl Debug for ColorChoice

impl Debug for Stream

impl Debug for BacktraceSymbol[src]

impl Debug for Symbol[src]

impl Debug for Backtrace[src]

impl Debug for BacktraceFrame[src]

impl Debug for Frame[src]

impl<'a> Debug for SymbolName<'a>[src]

impl<'a> Debug for BytesOrWideString<'a>[src]

impl<'a> Debug for Demangle<'a>

impl Debug for TryDemangleError

impl Debug for DwAddr

impl<T> Debug for RawRngListEntry<T> where
    T: Debug

impl Debug for Encoding

impl<T> Debug for DebugAddrIndex<T> where
    T: Debug

impl<R> Debug for DebugAddr<R> where
    R: Debug

impl Debug for SectionId

impl<T> Debug for DebugMacroOffset<T> where
    T: Debug

impl<R> Debug for DebugLine<R> where
    R: Debug

impl<R> Debug for LocListIter<R> where
    R: Debug + Reader,
    <R as Reader>::Offset: Debug

impl<T> Debug for DebugLineOffset<T> where
    T: Debug

impl<T> Debug for LocationListsOffset<T> where
    T: Debug

impl<'abbrev, 'unit, R> Debug for EntriesTree<'abbrev, 'unit, R> where
    R: Debug + Reader, 

impl<R> Debug for DebugRngLists<R> where
    R: Debug

impl Debug for DwAt

impl<'a, R> Debug for CallFrameInstructionIter<'a, R> where
    R: Debug + Reader, 

impl Debug for DwDs

impl<T> Debug for DebugLineStrOffset<T> where
    T: Debug

impl Debug for DwInl

impl<R, Offset> Debug for LineInstruction<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<R, Offset> Debug for IncompleteLineProgram<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl Debug for Format

impl Debug for DwTag

impl Debug for FileEntryFormat

impl<T> Debug for DebugRngListsBase<T> where
    T: Debug

impl<R> Debug for RawRngListIter<R> where
    R: Debug + Reader, 

impl Debug for ColumnType

impl<R> Debug for Attribute<R> where
    R: Debug + Reader, 

impl<T> Debug for DebugLocListsIndex<T> where
    T: Debug

impl Debug for DwLle

impl<'iter, R> Debug for RegisterRuleIter<'iter, R> where
    R: Debug + Reader, 

impl Debug for LittleEndian

impl Debug for DwAccess

impl Debug for Value

impl Debug for DwoId

impl Debug for DwOrd

impl<R> Debug for DebugInfo<R> where
    R: Debug

impl<R> Debug for PubNamesEntry<R> where
    R: Debug + Reader,
    <R as Reader>::Offset: Debug

impl<R> Debug for LocationListEntry<R> where
    R: Debug + Reader, 

impl<'bases, Section, R> Debug for PartialFrameDescriptionEntry<'bases, Section, R> where
    R: Debug + Reader,
    Section: Debug + UnwindSection<R>,
    <R as Reader>::Offset: Debug,
    <Section as UnwindSection<R>>::Offset: Debug

impl Debug for ReaderOffsetId

impl<R> Debug for OperationIter<R> where
    R: Debug + Reader, 

impl<'abbrev, 'unit, R> Debug for EntriesRaw<'abbrev, 'unit, R> where
    R: Debug + Reader, 

impl Debug for DwForm

impl Debug for RunTimeEndian

impl<T> Debug for RangeListsOffset<T> where
    T: Debug

impl<R> Debug for EvaluationResult<R> where
    R: Debug + Reader,
    <R as Reader>::Offset: Debug

impl<R> Debug for DebugStrOffsets<R> where
    R: Debug

impl<R> Debug for Dwarf<R> where
    R: Debug

impl<R> Debug for RangeIter<R> where
    R: Debug + Reader, 

impl<R, Offset> Debug for FileEntry<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<R, Offset> Debug for LineProgramHeader<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<'a, R> Debug for UnwindTable<'a, R> where
    R: Debug + Reader, 

impl Debug for LineEncoding

impl<T> Debug for DebugMacinfoOffset<T> where
    T: Debug

impl<R> Debug for ParsedEhFrameHdr<R> where
    R: Debug + Reader, 

impl Debug for DwVis

impl Debug for Pointer

impl<R> Debug for LineSequence<R> where
    R: Debug + Reader, 

impl<R> Debug for UnwindContext<R> where
    R: Debug + Reader, 

impl Debug for DwUt

impl<'abbrev, 'unit, 'tree, R> Debug for EntriesTreeIter<'abbrev, 'unit, 'tree, R> where
    R: Debug + Reader, 

impl<'bases, Section, R> Debug for CfiEntriesIter<'bases, Section, R> where
    R: Debug + Reader,
    Section: Debug + UnwindSection<R>, 

impl<R> Debug for DebugAranges<R> where
    R: Debug + Reader, 

impl<R> Debug for RawLocListEntry<R> where
    R: Debug + Reader,
    <R as Reader>::Offset: Debug

impl<R, Offset> Debug for Piece<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<T> Debug for DebugAbbrevOffset<T> where
    T: Debug

impl Debug for DwarfFileType

impl Debug for DwCfa

impl<R> Debug for DebugTypesUnitHeadersIter<R> where
    R: Debug + Reader,
    <R as Reader>::Offset: Debug

impl<T> Debug for DebugStrOffsetsIndex<T> where
    T: Debug

impl<'bases, Section, R> Debug for CieOrFde<'bases, Section, R> where
    R: Debug + Reader,
    Section: Debug + UnwindSection<R>, 

impl Debug for Abbreviations

impl<T> Debug for ArangeEntry<T> where
    T: Debug + Copy

impl<R> Debug for PubNamesEntryIter<R> where
    R: Debug + Reader, 

impl<R> Debug for RangeLists<R> where
    R: Debug

impl<T> Debug for UnitSectionOffset<T> where
    T: Debug

impl Debug for DwLns

impl Debug for X86_64

impl Debug for DwLne

impl<R, Offset> Debug for FrameDescriptionEntry<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<R> Debug for RegisterRule<R> where
    R: Debug + Reader, 

impl Debug for DwEnd

impl<'abbrev, 'unit, 'tree, R> Debug for EntriesTreeNode<'abbrev, 'unit, 'tree, R> where
    R: Debug + Reader, 

impl Debug for Augmentation

impl<T> Debug for DebugRngListsIndex<T> where
    T: Debug

impl<R> Debug for DebugTypes<R> where
    R: Debug

impl<T> Debug for DebugLocListsBase<T> where
    T: Debug

impl Debug for LineRow

impl Debug for DwVirtuality

impl<T> Debug for DebugInfoOffset<T> where
    T: Debug

impl<R> Debug for Evaluation<R> where
    R: Debug + Reader, 

impl<R> Debug for RngListIter<R> where
    R: Debug + Reader,
    <R as Reader>::Offset: Debug

impl<R> Debug for PubTypesEntryIter<R> where
    R: Debug + Reader, 

impl<R> Debug for CfaRule<R> where
    R: Debug + Reader, 

impl<R> Debug for DebugAbbrev<R> where
    R: Debug

impl Debug for DwOp

impl Debug for DwIdx

impl Debug for DwRle

impl<R, Offset> Debug for Location<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<R, Offset> Debug for AttributeValue<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<R, Offset> Debug for Operation<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<R> Debug for DebugPubNames<R> where
    R: Debug + Reader, 

impl Debug for DebugTypeSignature

impl<'a, R> Debug for EhHdrTable<'a, R> where
    R: Debug + Reader, 

impl<T> Debug for DieReference<T> where
    T: Debug

impl Debug for DwEhPe

impl<R> Debug for LocationLists<R> where
    R: Debug

impl<R, Program, Offset> Debug for LineRows<R, Program, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset,
    Program: Debug + LineProgram<R, Offset>, 

impl Debug for DwLang

impl<R> Debug for UninitializedUnwindContext<R> where
    R: Debug + Reader, 

impl<R> Debug for RawLocListIter<R> where
    R: Debug + Reader, 

impl Debug for DwChildren

impl<T> Debug for DebugStrOffset<T> where
    T: Debug

impl<'abbrev, 'unit, R> Debug for EntriesCursor<'abbrev, 'unit, R> where
    R: Debug + Reader, 

impl Debug for DwCc

impl<'abbrev, 'entry, 'unit, R> Debug for AttrsIter<'abbrev, 'entry, 'unit, R> where
    R: Debug + Reader, 

impl Debug for Error

impl<R> Debug for DebugRanges<R> where
    R: Debug

impl<T> Debug for EhFrameOffset<T> where
    T: Debug

impl<T> Debug for DebugStrOffsetsBase<T> where
    T: Debug

impl<R> Debug for DebugStr<R> where
    R: Debug

impl Debug for BigEndian

impl Debug for BaseAddresses

impl<R, Offset> Debug for Unit<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<T> Debug for DebugAddrBase<T> where
    T: Debug

impl<R> Debug for PubTypesEntry<R> where
    R: Debug + Reader,
    <R as Reader>::Offset: Debug

impl<R> Debug for ArangeEntryIter<R> where
    R: Debug + Reader, 

impl Debug for DwDefaulted

impl<T> Debug for UnitOffset<T> where
    T: Debug

impl<R> Debug for LineInstructions<R> where
    R: Debug + Reader, 

impl Debug for DwDsc

impl<R> Debug for DebugInfoUnitHeadersIter<R> where
    R: Debug + Reader,
    <R as Reader>::Offset: Debug

impl<Offset> Debug for UnitType<Offset> where
    Offset: Debug + ReaderOffset, 

impl<R> Debug for EhFrameHdr<R> where
    R: Debug + Reader, 

impl Debug for AttributeSpecification

impl<R> Debug for Expression<R> where
    R: Debug + Reader, 

impl<R> Debug for DebugFrame<R> where
    R: Debug + Reader, 

impl Debug for DwLnct

impl<R> Debug for EhFrame<R> where
    R: Debug + Reader, 

impl<R, Offset> Debug for CommonInformationEntry<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl<R> Debug for UnwindTableRow<R> where
    R: Debug + Reader, 

impl Debug for Register

impl<T> Debug for DebugFrameOffset<T> where
    T: Debug

impl<R, Offset> Debug for UnitHeader<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl Debug for ValueType

impl<T> Debug for DebugTypesOffset<T> where
    T: Debug

impl<R> Debug for DebugLoc<R> where
    R: Debug

impl<'input, Endian> Debug for EndianSlice<'input, Endian> where
    Endian: Debug + Endianity, 

impl<R, Offset> Debug for CompleteLineProgram<R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl Debug for SectionBaseAddresses

impl<R> Debug for CallFrameInstruction<R> where
    R: Debug + Reader, 

impl<R> Debug for DebugPubTypes<R> where
    R: Debug + Reader, 

impl Debug for X86

impl Debug for DwId

impl Debug for Abbreviation

impl<'abbrev, 'unit, R, Offset> Debug for DebuggingInformationEntry<'abbrev, 'unit, R, Offset> where
    R: Debug + Reader<Offset = Offset>,
    Offset: Debug + ReaderOffset, 

impl Debug for DwMacro

impl Debug for Range

impl<R> Debug for DebugLineStr<R> where
    R: Debug

impl Debug for DwAte

impl<R> Debug for DebugLocLists<R> where
    R: Debug

impl Debug for Arm

impl<'data, 'file, Elf> Debug for ElfSegmentIterator<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::ProgramHeader: Debug

impl<E> Debug for ProgramHeader32<E> where
    E: Debug + Endian, 

impl<'data> Debug for ObjectMapEntry<'data>

impl Debug for AnonObjectHeaderBigobj

impl Debug for ImageDynamicRelocationTable

impl Debug for ImageArchiveMemberHeader

impl<'data> Debug for SymbolMapName<'data>

impl Debug for Relocation

impl<'data> Debug for ArchiveFile<'data>

impl<E> Debug for LcStr<E> where
    E: Debug + Endian, 

impl<'data, 'file, Elf> Debug for ElfComdatSectionIterator<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::Endian: Debug

impl Debug for FatArch32

impl<E> Debug for UuidCommand<E> where
    E: Debug + Endian, 

impl Debug for ImageTlsDirectory32

impl<E> Debug for PrebindCksumCommand<E> where
    E: Debug + Endian, 

impl<E> Debug for DylibTableOfContents<E> where
    E: Debug + Endian, 

impl Debug for ImageResourceDirectoryString

impl Debug for FatArch64

impl<E> Debug for U16Bytes<E> where
    E: Endian, 

impl<E> Debug for VersionMinCommand<E> where
    E: Debug + Endian, 

impl<'data> Debug for Import<'data>

impl<'data, 'file, Mach> Debug for MachOSegmentIterator<'data, 'file, Mach> where
    'data: 'file,
    Mach: Debug + MachHeader,
    <Mach as MachHeader>::Endian: Debug

impl<E> Debug for Nlist32<E> where
    E: Debug + Endian, 

impl<E> Debug for Rel32<E> where
    E: Debug + Endian, 

impl<'data, 'file> Debug for DynamicRelocationIterator<'data, 'file> where
    'data: 'file, 

impl<'data, Elf> Debug for NoteIterator<'data, Elf> where
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::Endian: Debug

impl<'data, 'file, Mach> Debug for MachOSection<'data, 'file, Mach> where
    'data: 'file,
    Mach: Debug + MachHeader, 

impl Debug for ImageAlpha64RuntimeFunctionEntry

impl<'data, 'file, Pe> Debug for PeSection<'data, 'file, Pe> where
    'data: 'file,
    Pe: Debug + ImageNtHeaders, 

impl Debug for ImageVxdHeader

impl Debug for SectionKind

impl<'data, 'file> Debug for CoffSymbolIterator<'data, 'file>

impl Debug for ImageSeparateDebugHeader

impl<'data, 'file, Pe> Debug for PeComdat<'data, 'file, Pe> where
    Pe: Debug + ImageNtHeaders, 

impl<'data, Mach> Debug for SymbolTable<'data, Mach> where
    Mach: Debug + MachHeader,
    <Mach as MachHeader>::Nlist: Debug

impl Debug for ImageRuntimeFunctionEntry

impl Debug for BigEndian

impl Debug for ImageArmRuntimeFunctionEntry

impl<E> Debug for FvmfileCommand<E> where
    E: Debug + Endian, 

impl Debug for ImageSectionHeader

impl<E> Debug for Syminfo32<E> where
    E: Debug + Endian, 

impl<E> Debug for SegmentCommand64<E> where
    E: Debug + Endian, 

impl<E> Debug for FileHeader64<E> where
    E: Debug + Endian, 

impl<E> Debug for Dylib<E> where
    E: Debug + Endian, 

impl<E> Debug for Rela64<E> where
    E: Debug + Endian, 

impl<'data, 'file> Debug for SectionRelocationIterator<'data, 'file> where
    'data: 'file, 

impl Debug for ImageRomHeaders

impl<'data, 'file, Pe> Debug for PeSegment<'data, 'file, Pe> where
    'data: 'file,
    Pe: Debug + ImageNtHeaders, 

impl Debug for RelocationInfo

impl<'data, Mach> Debug for MachOFile<'data, Mach> where
    Mach: Debug + MachHeader,
    <Mach as MachHeader>::Endian: Debug

impl<E> Debug for Dyn64<E> where
    E: Debug + Endian, 

impl<'data, 'file, Elf> Debug for ElfComdatIterator<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::SectionHeader: Debug

impl Debug for ImagePrologueDynamicRelocationHeader

impl<'data, 'file> Debug for SymbolIterator<'data, 'file> where
    'data: 'file, 

impl<E> Debug for Rel64<E> where
    E: Debug + Endian, 

impl Debug for RelocationSections

impl<'data, 'file, Elf> Debug for ElfSection<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::SectionHeader: Debug

impl<E> Debug for SubFrameworkCommand<E> where
    E: Debug + Endian, 

impl Debug for AnonObjectHeaderV2

impl<E> Debug for CompressionHeader64<E> where
    E: Debug + Endian, 

impl<E> Debug for IdentCommand<E> where
    E: Debug + Endian, 

impl Debug for ImageArm64RuntimeFunctionEntry

impl Debug for ImageLoadConfigDirectory64

impl Debug for SymbolScope

impl<E> Debug for Dyn32<E> where
    E: Debug + Endian, 

impl<'data, Pe> Debug for PeFile<'data, Pe> where
    Pe: Debug + ImageNtHeaders, 

impl Debug for ImageOptionalHeader32

impl<'data> Debug for SymbolTable<'data>

impl<E> Debug for I32Bytes<E> where
    E: Endian, 

impl<E> Debug for MachHeader64<E> where
    E: Debug + Endian, 

impl<E> Debug for RoutinesCommand<E> where
    E: Debug + Endian, 

impl<'data, 'file> Debug for Segment<'data, 'file>

impl Debug for ImageLoadConfigCodeIntegrity

impl<'data, 'file, Elf> Debug for ElfSymbol<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::Endian: Debug,
    <Elf as FileHeader>::Sym: Debug

impl<E> Debug for DylibModule64<E> where
    E: Debug + Endian, 

impl<E> Debug for NoteCommand<E> where
    E: Debug + Endian, 

impl<'data, 'file, Pe> Debug for PeSectionIterator<'data, 'file, Pe> where
    'data: 'file,
    Pe: Debug + ImageNtHeaders, 

impl<'data, 'file> Debug for CoffSectionIterator<'data, 'file> where
    'data: 'file, 

impl<'data, 'file> Debug for CoffSymbol<'data, 'file> where
    'data: 'file, 

impl Debug for ImageFunctionEntry

impl<'data, 'file, Mach> Debug for MachOComdat<'data, 'file, Mach> where
    Mach: Debug + MachHeader, 

impl<E> Debug for FvmlibCommand<E> where
    E: Debug + Endian, 

impl Debug for FileFlags

impl Debug for ImageBaseRelocation

impl Debug for ImageBoundForwarderRef

impl<'data, 'file, Mach> Debug for MachOComdatIterator<'data, 'file, Mach> where
    Mach: Debug + MachHeader, 

impl<'data, Elf> Debug for SymbolTable<'data, Elf> where
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::Sym: Debug

impl Debug for ImageResourceDirectory

impl<'data, 'file> Debug for Section<'data, 'file>

impl Debug for ImageRelocation

impl Debug for ImageHotPatchBase

impl Debug for ImageAlphaRuntimeFunctionEntry

impl<'data, 'file> Debug for SegmentIterator<'data, 'file> where
    'data: 'file, 

impl<'data, Elf> Debug for Note<'data, Elf> where
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::NoteHeader: Debug

impl<'data, 'file> Debug for PeRelocationIterator<'data, 'file>

impl Debug for ImageLinenumber

impl Debug for SymbolSection

impl<'data> Debug for File<'data>

impl<E> Debug for BuildToolVersion<E> where
    E: Debug + Endian, 

impl<'data, 'file> Debug for CoffSymbolTable<'data, 'file> where
    'data: 'file, 

impl<'data, 'file, Elf> Debug for ElfSymbolIterator<'data, 'file, Elf> where
    Elf: FileHeader, 

impl<E> Debug for SubUmbrellaCommand<E> where
    E: Debug + Endian, 

impl<'data, 'file, Pe> Debug for PeComdatIterator<'data, 'file, Pe> where
    Pe: Debug + ImageNtHeaders, 

impl<Section> Debug for SymbolFlags<Section> where
    Section: Debug

impl Debug for Guid

impl<E> Debug for ThreadCommand<E> where
    E: Debug + Endian, 

impl<E> Debug for RpathCommand<E> where
    E: Debug + Endian, 

impl Debug for ImageLoadConfigDirectory32

impl<'data, 'file, Elf> Debug for ElfComdat<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::SectionHeader: Debug,
    <Elf as FileHeader>::Endian: Debug

impl Debug for ImageOs2Header

impl<'data, 'file, Mach> Debug for MachOSymbolIterator<'data, 'file, Mach> where
    Mach: MachHeader, 

impl Debug for ArchiveKind

impl<'data> Debug for ArchiveMember<'data>

impl<'data> Debug for SectionTable<'data>

impl<E> Debug for DyldInfoCommand<E> where
    E: Debug + Endian, 

impl<E> Debug for Syminfo64<E> where
    E: Debug + Endian, 

impl Debug for ImageBoundImportDescriptor

impl Debug for ImageFunctionEntry64

impl<'data, 'file, Mach> Debug for MachOSectionIterator<'data, 'file, Mach> where
    Mach: MachHeader, 

impl Debug for NonPagedDebugInfo

impl Debug for ImageTlsDirectory64

impl<E> Debug for DylibModule32<E> where
    E: Debug + Endian, 

impl<'data> Debug for CompressedData<'data>

impl Debug for ImageRomOptionalHeader

impl<E> Debug for Rela32<E> where
    E: Debug + Endian, 

impl<E> Debug for SubClientCommand<E> where
    E: Debug + Endian, 

impl<'data> Debug for CoffFile<'data>

impl<T> Debug for SymbolMap<T> where
    T: Debug + SymbolMapEntry, 

impl Debug for Endianness

impl Debug for ImageEpilogueDynamicRelocationHeader

impl Debug for ImageResourceDataEntry

impl<'data> Debug for Bytes<'data>

impl Debug for ImportObjectHeader

impl<'data, 'file> Debug for CoffSegment<'data, 'file> where
    'data: 'file, 

impl Debug for RelocationEncoding

impl Debug for ImageDebugMisc

impl<E> Debug for Section32<E> where
    E: Debug + Endian, 

impl<E> Debug for SectionHeader32<E> where
    E: Debug + Endian, 

impl Debug for ImageCor20Header

impl Debug for ImageArchitectureEntry

impl<E> Debug for SourceVersionCommand<E> where
    E: Debug + Endian, 

impl Debug for SectionFlags

impl Debug for ImageNtHeaders32

impl Debug for FileKind

impl Debug for ImageDosHeader

impl<E> Debug for I64Bytes<E> where
    E: Endian, 

impl Debug for ImageAuxSymbolTokenDef

impl Debug for SectionIndex

impl<'data, 'file> Debug for Symbol<'data, 'file>

impl<E> Debug for TwolevelHintsCommand<E> where
    E: Debug + Endian, 

impl<E> Debug for SectionHeader64<E> where
    E: Debug + Endian, 

impl Debug for ImageResourceDirectoryEntry

impl Debug for CompressionFormat

impl Debug for ImageDynamicRelocation32V2

impl Debug for SymbolIndex

impl<E> Debug for DataInCodeEntry<E> where
    E: Debug + Endian, 

impl Debug for ImageAuxSymbolSection

impl<'data, 'file> Debug for SymbolTable<'data, 'file> where
    'data: 'file, 

impl<'data, 'file, Pe> Debug for PeSegmentIterator<'data, 'file, Pe> where
    'data: 'file,
    Pe: Debug + ImageNtHeaders, 

impl Debug for Header

impl Debug for ComdatKind

impl Debug for ImageOptionalHeader64

impl Debug for ImageSymbolBytes

impl Debug for ImageAuxSymbolFunction

impl<E> Debug for DylinkerCommand<E> where
    E: Debug + Endian, 

impl<E> Debug for DylibCommand<E> where
    E: Debug + Endian, 

impl Debug for SymbolKind

impl Debug for ImageExportDirectory

impl<'data, 'file> Debug for ComdatIterator<'data, 'file> where
    'data: 'file, 

impl Debug for ImageCoffSymbolsHeader

impl<'data, 'file, Mach> Debug for MachOSymbolTable<'data, 'file, Mach> where
    Mach: Debug + MachHeader, 

impl<'data, 'file, Elf> Debug for ElfSectionIterator<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::SectionHeader: Debug

impl Debug for ImageEnclaveConfig32

impl<'data, 'file> Debug for Comdat<'data, 'file>

impl<E> Debug for EntryPointCommand<E> where
    E: Debug + Endian, 

impl Debug for RelocationTarget

impl<'data, 'file> Debug for ComdatSectionIterator<'data, 'file> where
    'data: 'file, 

impl<E> Debug for SubLibraryCommand<E> where
    E: Debug + Endian, 

impl<'data, 'file> Debug for CoffComdatSectionIterator<'data, 'file> where
    'data: 'file, 

impl<E> Debug for SymSegCommand<E> where
    E: Debug + Endian, 

impl Debug for ImageAuxSymbolCrc

impl Debug for ImageAuxSymbolWeak

impl Debug for ImageHotPatchInfo

impl Debug for NoDynamicRelocationIterator

impl<'data, 'file> Debug for CoffSection<'data, 'file> where
    'data: 'file, 

impl<E> Debug for LoadCommand<E> where
    E: Debug + Endian, 

impl<E> Debug for NoteHeader32<E> where
    E: Debug + Endian, 

impl Debug for Architecture

impl<E> Debug for TwolevelHint<E> where
    E: Debug + Endian, 

impl<E> Debug for EncryptionInfoCommand64<E> where
    E: Debug + Endian, 

impl<'data, 'file, Elf> Debug for ElfDynamicRelocationIterator<'data, 'file, Elf> where
    Elf: FileHeader, 

impl Debug for ImageResourceDirStringU

impl Debug for ImageEnclaveConfig64

impl<E> Debug for FileHeader32<E> where
    E: Debug + Endian, 

impl<E> Debug for BuildVersionCommand<E> where
    E: Debug + Endian, 

impl<'data, 'file, Mach> Debug for MachOSymbol<'data, 'file, Mach> where
    Mach: Debug + MachHeader,
    <Mach as MachHeader>::Nlist: Debug

impl<E> Debug for DysymtabCommand<E> where
    E: Debug + Endian, 

impl<'data, 'file> Debug for SectionIterator<'data, 'file> where
    'data: 'file, 

impl Debug for ImageFileHeader

impl<'data, 'file, Mach> Debug for MachOSegment<'data, 'file, Mach> where
    'data: 'file,
    Mach: Debug + MachHeader,
    <Mach as MachHeader>::Segment: Debug

impl Debug for ImageSymbolEx

impl<E> Debug for EncryptionInfoCommand<E> where
    E: Debug + Endian, 

impl Debug for ImageDebugDirectory

impl<'data> Debug for ArchiveMemberIterator<'data>

impl Debug for LittleEndian

impl<'data, 'file, Elf> Debug for ElfSectionRelocationIterator<'data, 'file, Elf> where
    Elf: FileHeader, 

impl Debug for ImageDynamicRelocation64V2

impl Debug for ImageEnclaveImport

impl Debug for ImageImportByName

impl Debug for ImageNtHeaders64

impl Debug for FatHeader

impl<E> Debug for RoutinesCommand_64<E> where
    E: Debug + Endian, 

impl<E> Debug for I16Bytes<E> where
    E: Endian, 

impl Debug for ImageDelayloadDescriptor

impl Debug for Ident

impl<E> Debug for LinkeditDataCommand<E> where
    E: Debug + Endian, 

impl<E> Debug for SegmentCommand32<E> where
    E: Debug + Endian, 

impl<'data> Debug for StringTable<'data>

impl Debug for ImageAuxSymbolFunctionBeginEnd

impl<'data> Debug for ObjectMap<'data>

impl Debug for ImageDataDirectory

impl<E> Debug for Fvmlib<E> where
    E: Debug + Endian, 

impl<E> Debug for CompressionHeader32<E> where
    E: Debug + Endian, 

impl<'data, 'file, Pe> Debug for PeComdatSectionIterator<'data, 'file, Pe> where
    'data: 'file,
    Pe: Debug + ImageNtHeaders, 

impl Debug for ImageSymbol

impl<'data, 'file, Elf> Debug for ElfSymbolTable<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::Endian: Debug

impl<E> Debug for NoteHeader64<E> where
    E: Debug + Endian, 

impl Debug for ImageSymbolExBytes

impl<'data, 'file, Mach> Debug for MachORelocationIterator<'data, 'file, Mach> where
    Mach: MachHeader, 

impl<E> Debug for Sym64<E> where
    E: Debug + Endian, 

impl<E> Debug for Section64<E> where
    E: Debug + Endian, 

impl Debug for ImageHotPatchHashes

impl<'data, 'file> Debug for CoffSegmentIterator<'data, 'file> where
    'data: 'file, 

impl Debug for RelocationKind

impl Debug for ImageImportDescriptor

impl<'data, 'file, Elf> Debug for ElfSegment<'data, 'file, Elf> where
    'data: 'file,
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::ProgramHeader: Debug

impl Debug for ImageDynamicRelocation32

impl Debug for BinaryFormat

impl Debug for AddressSize

impl<E> Debug for DylibReference<E> where
    E: Debug + Endian, 

impl<E> Debug for U64Bytes<E> where
    E: Endian, 

impl<'data, 'file> Debug for CoffComdat<'data, 'file> where
    'data: 'file, 

impl<E> Debug for Sym32<E> where
    E: Debug + Endian, 

impl<E> Debug for U32Bytes<E> where
    E: Endian, 

impl Debug for AnonObjectHeader

impl<E> Debug for LinkerOptionCommand<E> where
    E: Debug + Endian, 

impl<E> Debug for PreboundDylibCommand<E> where
    E: Debug + Endian, 

impl Debug for ImageDynamicRelocation64

impl<E> Debug for ProgramHeader64<E> where
    E: Debug + Endian, 

impl<'data> Debug for Export<'data>

impl<E> Debug for SymtabCommand<E> where
    E: Debug + Endian, 

impl<'data, 'file> Debug for CoffRelocationIterator<'data, 'file>

impl<'data, Elf> Debug for SectionTable<'data, Elf> where
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::SectionHeader: Debug

impl<E> Debug for MachHeader32<E> where
    E: Debug + Endian, 

impl<'data, 'file, Mach> Debug for MachOComdatSectionIterator<'data, 'file, Mach> where
    'data: 'file,
    Mach: Debug + MachHeader, 

impl<'data, Elf> Debug for ElfFile<'data, Elf> where
    Elf: Debug + FileHeader,
    <Elf as FileHeader>::Endian: Debug,
    <Elf as FileHeader>::ProgramHeader: Debug

impl<'data, 'file> Debug for CoffComdatIterator<'data, 'file> where
    'data: 'file, 

impl<E> Debug for Relocation<E> where
    E: Debug + Endian, 

impl Debug for ScatteredRelocationInfo

impl Debug for Error

impl<E> Debug for Nlist64<E> where
    E: Debug + Endian, 

impl Debug for MZError

impl Debug for MZStatus

impl Debug for CompressionLevel

impl Debug for CompressionStrategy

impl Debug for TDEFLStatus

impl Debug for MZFlush

impl Debug for TDEFLFlush

impl Debug for StreamResult

impl Debug for DataFormat

impl Debug for TINFLStatus

impl Debug for Adler32[src]

impl Debug for Color[src]

impl<T> Debug for Paint<T> where
    T: Debug
[src]

impl Debug for Style[src]

impl Debug for DebouncedEvent

impl Debug for Error

impl Debug for RawEvent

impl Debug for RecursiveMode

impl Debug for Op

impl Debug for FileTime

impl Debug for Ready[src]

impl Debug for Registration[src]

impl Debug for TcpStream[src]

impl<'a> Debug for Iter<'a>[src]

impl Debug for Poll[src]

impl Debug for Token[src]

impl Debug for Events[src]

impl Debug for UnixReady[src]

impl Debug for Event[src]

impl Debug for SetReadiness[src]

impl Debug for UdpSocket[src]

impl Debug for TcpListener[src]

impl<'a> Debug for EventedFd<'a>[src]

impl Debug for PollOpt[src]

impl Debug for TcpBuilder[src]

impl Debug for UdpBuilder[src]

impl<'a, T> Debug for Iter<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for IterMut<'a, T> where
    T: 'a + Debug
[src]

impl<T> Debug for Slab<T> where
    T: Debug
[src]

impl<'a, T> Debug for Drain<'a, T> where
    T: 'a, 
[src]

impl<'a, T> Debug for VacantEntry<'a, T> where
    T: 'a + Debug
[src]

impl Debug for Timeout

impl<T> Debug for SendError<T>

impl<T> Debug for TrySendError<T>

impl<T> Debug for AtomicLazyCell<T> where
    T: Debug

impl<T> Debug for LazyCell<T> where
    T: Debug

impl Debug for WatchMask

impl Debug for WatchDescriptor

impl<S> Debug for Event<S> where
    S: Debug

impl Debug for EventMask

impl Debug for inotify_event

impl Debug for Error

impl Debug for DirEntry

impl<I, P> Debug for FilterEntry<I, P> where
    I: Debug,
    P: Debug

impl Debug for WalkDir

impl Debug for IntoIter

impl Debug for Handle

impl Debug for Always[src]

impl<T, F, S> Debug for ScopeGuard<T, F, S> where
    S: Strategy,
    T: Debug,
    F: FnOnce(T), 
[src]

impl Debug for UnparkToken

impl Debug for ParkToken

impl Debug for ParkResult

impl Debug for FilterOp

impl Debug for RequeueOp

impl Debug for UnparkResult

impl<A> Debug for SmallVec<A> where
    A: Array,
    <A as Array>::Item: Debug

impl<'a, T> Debug for Drain<'a, T> where
    T: 'a + Array,
    <T as Array>::Item: Debug

impl<A> Debug for IntoIter<A> where
    A: Array,
    <A as Array>::Item: Debug

impl Debug for CollectionAllocErr

impl Debug for ExtMeta

impl<'a> Debug for DecodeStringError<'a>

impl Debug for ValueReadError

impl Debug for MarkerReadError

impl Debug for NumValueReadError

impl Debug for Marker

impl Debug for ValueWriteError

impl Debug for BigEndian

impl Debug for LittleEndian

impl<'a, K, V> Debug for Iter<'a, K, V> where
    K: Debug,
    V: 'a + Debug

impl<'a, K, V> Debug for IterMut<'a, K, V> where
    K: Debug,
    V: 'a + Debug

impl<'a> Debug for PercentDecode<'a>

impl Debug for WeightedError[src]

impl<X> Debug for UniformFloat<X> where
    X: Debug
[src]

impl<R> Debug for ReadRng<R> where
    R: Debug
[src]

impl<W> Debug for WeightedIndex<W> where
    W: Debug + Weight
[src]

impl Debug for UniformChar[src]

impl Debug for StdRng[src]

impl Debug for IndexVecIntoIter[src]

impl Debug for UniformDuration[src]

impl Debug for BernoulliError[src]

impl Debug for Bernoulli[src]

impl Debug for StepRng[src]

impl Debug for Standard[src]

impl Debug for IndexVec[src]

impl<D, R, T> Debug for DistIter<D, R, T> where
    T: Debug,
    R: Debug,
    D: Debug
[src]

impl Debug for ThreadRng[src]

impl<'a> Debug for IndexVecIter<'a>[src]

impl Debug for Open01[src]

impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr> where
    R: Debug + BlockRngCore + SeedableRng,
    Rsdr: Debug + RngCore
[src]

impl<X> Debug for WeightedIndex<X> where
    X: Debug + SampleUniform + PartialOrd<X>,
    <X as SampleUniform>::Sampler: Debug
[src]

impl<X> Debug for UniformInt<X> where
    X: Debug
[src]

impl<X> Debug for Uniform<X> where
    X: Debug + SampleUniform,
    <X as SampleUniform>::Sampler: Debug
[src]

impl Debug for ReadError[src]

impl<'a, S, T> Debug for SliceChooseIter<'a, S, T> where
    S: 'a + Debug + ?Sized,
    T: 'a + Debug
[src]

impl Debug for OpenClosed01[src]

impl Debug for OsRng[src]

impl<R> Debug for BlockRng64<R> where
    R: BlockRngCore + Debug
[src]

impl Debug for Error[src]

impl<R> Debug for BlockRng<R> where
    R: BlockRngCore + Debug
[src]

impl Debug for Error[src]

impl Debug for ChaCha8Rng[src]

impl Debug for ChaCha20Rng[src]

impl Debug for ChaCha12Rng[src]

impl Debug for ChaCha20Core[src]

impl Debug for ChaCha12Core[src]

impl Debug for ChaCha8Core[src]

impl Debug for ParseError[src]

impl<S> Debug for Host<S> where
    S: Debug
[src]

impl Debug for Origin[src]

impl<'a> Debug for PathSegmentsMut<'a>[src]

impl Debug for ParseError[src]

impl<'a> Debug for UrlQuery<'a>[src]

impl Debug for SyntaxViolation[src]

impl Debug for Position[src]

impl Debug for OpaqueOrigin[src]

impl<'a> Debug for ByteSerialize<'a>

impl Debug for Errors

impl Debug for BidiClass

impl<'text> Debug for BidiInfo<'text>

impl<'text> Debug for InitialInfo<'text>

impl Debug for Error

impl Debug for ParagraphInfo

impl Debug for Level

impl Debug for IsNormalized

impl<A> Debug for TinyVecIterator<A> where
    A: Array,
    <A as Array>::Item: Debug

impl<A> Debug for ArrayVecIterator<A> where
    A: Array,
    <A as Array>::Item: Debug

impl<A> Debug for TinyVec<A> where
    A: Array,
    <A as Array>::Item: Debug

impl Debug for TryFromSliceError

impl<'s, T> Debug for SliceVec<'s, T> where
    T: Debug

impl<A> Debug for ArrayVec<A> where
    A: Array,
    <A as Array>::Item: Debug

impl Debug for Error[src]

impl Debug for ErrorKind[src]

impl Debug for Tera[src]

impl Debug for MacroDefinition[src]

impl Debug for Set[src]

impl Debug for WS[src]

impl Debug for Expr[src]

impl Debug for StringConcat[src]

impl Debug for MathOperator[src]

impl Debug for Node[src]

impl Debug for Context[src]

impl Debug for Error[src]

impl Debug for If[src]

impl Debug for Test[src]

impl Debug for FilterSection[src]

impl Debug for LogicOperator[src]

impl Debug for ExprVal[src]

impl Debug for Template[src]

impl Debug for LogicExpr[src]

impl Debug for MathExpr[src]

impl Debug for Block[src]

impl Debug for MacroCall[src]

impl Debug for Forloop[src]

impl Debug for FunctionCall[src]

impl Debug for GlobError[src]

impl Debug for Pattern[src]

impl Debug for PatternError[src]

impl Debug for MatchDir[src]

impl Debug for Atomicity[src]

impl<R> Debug for Operator<R> where
    R: Debug + RuleType
[src]

impl<'i, R> Debug for Pairs<'i, R> where
    R: RuleType
[src]

impl<'i, R> Debug for Token<'i, R> where
    R: Debug
[src]

impl<R> Debug for ErrorVariant<R> where
    R: Debug
[src]

impl Debug for Assoc[src]

impl<R> Debug for Error<R> where
    R: Debug
[src]

impl<R> Debug for PrecClimber<R> where
    R: Debug + RuleType
[src]

impl<'i> Debug for Span<'i>[src]

impl<'i, R> Debug for Tokens<'i, R> where
    R: RuleType
[src]

impl<'i, R> Debug for Pair<'i, R> where
    R: RuleType
[src]

impl Debug for Lookahead[src]

impl<'i, R> Debug for ParserState<'i, R> where
    R: Debug + RuleType
[src]

impl Debug for LineColLocation[src]

impl<'i, R> Debug for FlatPairs<'i, R> where
    R: RuleType
[src]

impl Debug for InputLocation[src]

impl<'i> Debug for Position<'i>[src]

impl Debug for TrieSetOwned

impl Debug for Error

impl<'a> Debug for TrieSetSlice<'a>

impl<'a, T> Debug for DisplayChain<'a, T> where
    T: 'a + Debug + ?Sized
[src]

impl<'a> Debug for Iter<'a>[src]

impl Debug for ErrorKind[src]

impl Debug for Error[src]

impl Debug for Error[src]

impl Debug for ErrorKind[src]

impl Debug for FileSizeOpts

impl Debug for FixedAt

impl Debug for Kilo

impl Debug for SocketAddrs[src]

impl<T> Debug for Serializer<T> where
    T: Debug + Target
[src]

impl<'a> Debug for UrlQuery<'a>[src]

impl<'a> Debug for ParseIntoOwned<'a>[src]

impl Debug for Position[src]

impl<'a> Debug for ParseOptions<'a>[src]

impl<'a> Debug for ByteSerialize<'a>[src]

impl<'a> Debug for Parse<'a>[src]

impl Debug for Url[src]

Debug the serialization of this URL.

impl Debug for Origin[src]

impl Debug for ParseError[src]

impl Debug for SyntaxViolation[src]

impl<S> Debug for HostAndPort<S> where
    S: Debug
[src]

impl<S> Debug for Host<S> where
    S: Debug
[src]

impl<'a> Debug for PathSegmentsMut<'a>[src]

impl Debug for OpaqueOrigin[src]

impl Debug for Errors

impl<'a> Debug for PercentDecode<'a>

impl Debug for QUERY_ENCODE_SET

impl Debug for PATH_SEGMENT_ENCODE_SET

impl Debug for DEFAULT_ENCODE_SET

impl Debug for SIMPLE_ENCODE_SET

impl Debug for USERINFO_ENCODE_SET

impl<'a, E> Debug for PercentEncode<'a, E> where
    E: Debug + EncodeSet, 

impl Debug for GraphemeIncomplete

impl Debug for GraphemeClusterBreak

impl Debug for WordBreak

impl Debug for SentenceBreak

impl<V> Debug for CharDataTable<V> where
    V: 'static + Debug

impl Debug for CharRange

impl Debug for CharIter

impl Debug for UnicodeVersion

impl Debug for TempDir[src]

impl Debug for TempPath[src]

impl Debug for SpooledTempFile[src]

impl Debug for PersistError[src]

impl Debug for NamedTempFile[src]

impl Debug for PathPersistError[src]

impl<'a, 'b> Debug for Builder<'a, 'b>[src]

impl<'a> Debug for ArgGroup<'a>[src]

impl Debug for ErrorKind[src]

impl Debug for ArgSettings[src]

impl<'a> Debug for SubCommand<'a>[src]

impl<'a> Debug for ArgMatches<'a>[src]

impl Debug for Shell[src]

impl<'a> Debug for OsValues<'a>[src]

impl<'a> Debug for Values<'a>[src]

impl Debug for Error[src]

impl Debug for AppSettings[src]

impl Debug for Prefix

impl<'a, S> Debug for ANSIGenericString<'a, S> where
    S: 'a + Debug + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

impl Debug for Style

Styles have a special Debug implementation that only shows the fields that are set. Fields that haven’t been touched aren’t included in the output.

This behaviour gets bypassed when using the alternate formatting mode format!("{:#?}").

use ansi_term::Colour::{Red, Blue};
assert_eq!("Style { fg(Red), on(Blue), bold, italic }",
           format!("{:?}", Red.on(Blue).bold().italic()));

impl Debug for Colour

impl Debug for Infix

impl Debug for Suffix

impl Debug for StrSimError

impl<'a, S> Debug for Wrapper<'a, S> where
    S: Debug + WordSplitter
[src]

impl<'w, 'a, S> Debug for WrapIter<'w, 'a, S> where
    'a: 'w,
    S: 'w + Debug + WordSplitter
[src]

impl Debug for HyphenSplitter[src]

impl Debug for NoHyphenation[src]

impl<'a, S> Debug for IntoWrapIter<'a, S> where
    S: Debug + WordSplitter
[src]

impl<V> Debug for VecMap<V> where
    V: Debug

Loading content...

Implementors

impl Debug for AccountScope[src]

impl Debug for AccountsSaveError[src]

impl Debug for ApiPieceOpError[src]

impl Debug for InternalError[src]

impl Debug for InvalidScopedName[src]

impl Debug for LinkKind[src]

impl Debug for MgmtChannelReadError[src]

impl Debug for OccDisplacement[src]

impl Debug for OccultationKindAlwaysOk[src]

impl Debug for OldNewIndex[src]

impl Debug for OnlineError[src]

impl Debug for Outline[src]

impl Debug for PieceAngle[src]

impl Debug for PieceMoveable[src]

impl Debug for PieceOpError[src]

impl Debug for PieceOpErrorPartiallyProcessed[src]

impl Debug for PieceUpdateOps[src]

impl Debug for PreparedUpdateEntry[src]

impl Debug for PresentationLayout[src]

impl Debug for SVGProcessingError[src]

impl Debug for SpecError[src]

impl Debug for StaticUser[src]

impl Debug for TablePermission[src]

impl Debug for TablePlayerSpec[src]

impl Debug for UoKind[src]

impl Debug for WhatResponseToClientOp[src]

impl Debug for VarError[src]

impl Debug for Age

impl Debug for Cleanup

impl Debug for Criterion

impl Debug for Duplicate

impl Debug for FlexiLoggerError

impl Debug for otter_api_tests::flexi_logger::Level[src]

impl Debug for LevelFilter[src]

impl Debug for Naming

impl Debug for Alignment1.28.0[src]

impl Debug for Month[src]

impl Debug for RoundingError[src]

impl Debug for SecondsFormat[src]

impl Debug for Weekday[src]

impl Debug for Fixed[src]

impl Debug for Numeric[src]

impl Debug for Pad[src]

impl Debug for Tz

impl Debug for Target

impl Debug for TimestampPrecision

impl Debug for WriteStyle

impl Debug for otter_api_tests::imports::env_logger::fmt::Color

impl Debug for FpCategory[src]

impl Debug for IntErrorKind[src]

impl Debug for otter_api_tests::imports::failure::_core::sync::atomic::Ordering[src]

impl Debug for DIR

impl Debug for FILE

impl Debug for c_void1.16.0[src]

impl Debug for fpos64_t

impl Debug for fpos_t

impl Debug for timezone

impl Debug for Type

impl Debug for otter_api_tests::imports::nix::Error

impl Debug for Errno

impl Debug for FlockArg

impl Debug for PosixFadviseAdvice

impl Debug for AioCancelStat

impl Debug for AioFsyncMode

impl Debug for LioMode

impl Debug for LioOpcode

impl Debug for EpollOp

impl Debug for MmapAdvise

impl Debug for otter_api_tests::imports::nix::sys::ptrace::Event

impl Debug for Request

impl Debug for QuotaFmt

impl Debug for QuotaType

impl Debug for RebootMode

impl Debug for SigHandler

impl Debug for SigevNotify

impl Debug for SigmaskHow

impl Debug for Signal

impl Debug for AddressFamily

impl Debug for ControlMessageOwned

impl Debug for InetAddr

impl Debug for otter_api_tests::imports::nix::sys::socket::IpAddr

impl Debug for otter_api_tests::imports::nix::sys::socket::Shutdown

impl Debug for SockAddr

impl Debug for SockProtocol

impl Debug for otter_api_tests::imports::nix::sys::socket::SockType

impl Debug for FchmodatFlags

impl Debug for UtimensatFlags

impl Debug for BaudRate

impl Debug for FlowArg

impl Debug for FlushArg

impl Debug for SetArg

impl Debug for SpecialCharacterIndices

impl Debug for otter_api_tests::imports::nix::sys::timerfd::ClockId

impl Debug for Expiration

impl Debug for WaitStatus

impl Debug for DecodeErrKind

impl Debug for otter_api_tests::imports::parking_lot::OnceState

impl Debug for PwdError

impl Debug for otter_api_tests::imports::regex::Error

impl Debug for otter_api_tests::imports::rmp_serde::decode::Error

impl Debug for otter_api_tests::imports::rmp_serde::encode::Error

impl Debug for otter_api_tests::imports::toml::Value[src]

impl Debug for otter_api_tests::imports::toml::ser::Error[src]

impl Debug for ConnCredentials

impl Debug for RecvTimeoutError1.12.0[src]

impl Debug for TryRecvError[src]

impl Debug for otter_api_tests::serde_json::Value[src]

impl Debug for Category[src]

impl Debug for SearchStep[src]

impl Debug for FchownatFlags

impl Debug for ForkResult

impl Debug for LinkatFlags

impl Debug for PathconfVar

impl Debug for SysconfVar

impl Debug for UnlinkatFlags

impl Debug for Whence

impl Debug for AncillaryError[src]

impl Debug for LogicError

impl Debug for Config1[src]

impl Debug for otter_api_tests::shapelib::ErrorKind[src]

impl Debug for Infallible1.34.0[src]

impl Debug for LibraryLoadError[src]

impl Debug for MgmtCommand[src]

impl Debug for MgmtError[src]

impl Debug for MgmtGameInstruction[src]

impl Debug for MgmtGameResponse[src]

impl Debug for MgmtGameUpdateMode[src]

impl Debug for MgmtResponse[src]

impl Debug for OccultationMethod[src]

impl Debug for otter_api_tests::shapelib::Ordering[src]

impl Debug for SeekFrom[src]

impl Debug for Void

impl Debug for DiffToShow[src]

impl Debug for PieceLabelPlace[src]

impl Debug for otter_api_tests::shapelib::toml_de::Error[src]

impl Debug for AuthorisationError[src]

impl Debug for otter_api_tests::authproofs::Global[src]

impl Debug for Args1.16.0[src]

impl Debug for ArgsOs1.16.0[src]

impl Debug for JoinPathsError[src]

impl Debug for Vars1.16.0[src]

impl Debug for VarsOs1.16.0[src]

impl Debug for DeferredNow

impl Debug for LogSpecBuilder

impl Debug for ModuleFilter

impl Debug for otter_api_tests::fmt::Error[src]

impl Debug for DirBuilder1.6.0[src]

impl Debug for otter_api_tests::fs::DirEntry1.13.0[src]

impl Debug for FileType1.1.0[src]

impl Debug for otter_api_tests::fs::Metadata1.16.0[src]

impl Debug for OpenOptions[src]

impl Debug for Permissions[src]

impl Debug for ReadDir[src]

impl Debug for PosCFromIteratorError

impl Debug for DefaultHasher1.13.0[src]

impl Debug for RandomState1.16.0[src]

impl Debug for otter_api_tests::imports::anyhow::Error[src]

impl Debug for InternalFixed[src]

impl Debug for InternalNumeric[src]

impl Debug for Parsed[src]

impl Debug for otter_api_tests::imports::chrono::Duration[src]

impl Debug for FixedOffset[src]

impl Debug for IsoWeek[src]

The Debug output of the ISO week w is the same as d.format("%G-W%V") where d is any NaiveDate value in that week.

Example

use chrono::{NaiveDate, Datelike};

assert_eq!(format!("{:?}", NaiveDate::from_ymd(2015,  9,  5).iso_week()), "2015-W36");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(   0,  1,  3).iso_week()), "0000-W01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(9999, 12, 31).iso_week()), "9999-W52");

ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.

assert_eq!(format!("{:?}", NaiveDate::from_ymd(    0,  1,  2).iso_week()),  "-0001-W52");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(10000, 12, 31).iso_week()), "+10000-W52");

impl Debug for Local[src]

impl Debug for NaiveDate[src]

The Debug output of the naive date d is the same as d.format("%Y-%m-%d").

The string printed can be readily parsed via the parse method on str.

Example

use chrono::NaiveDate;

assert_eq!(format!("{:?}", NaiveDate::from_ymd(2015,  9,  5)), "2015-09-05");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(   0,  1,  1)), "0000-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(9999, 12, 31)), "9999-12-31");

ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.

assert_eq!(format!("{:?}", NaiveDate::from_ymd(   -1,  1,  1)),  "-0001-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(10000, 12, 31)), "+10000-12-31");

impl Debug for NaiveDateTime[src]

The Debug output of the naive date and time dt is the same as dt.format("%Y-%m-%dT%H:%M:%S%.f").

The string printed can be readily parsed via the parse method on str.

It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)

Example

use chrono::NaiveDate;

let dt = NaiveDate::from_ymd(2016, 11, 15).and_hms(7, 39, 24);
assert_eq!(format!("{:?}", dt), "2016-11-15T07:39:24");

Leap seconds may also be used.

let dt = NaiveDate::from_ymd(2015, 6, 30).and_hms_milli(23, 59, 59, 1_500);
assert_eq!(format!("{:?}", dt), "2015-06-30T23:59:60.500");

impl Debug for NaiveTime[src]

The Debug output of the naive time t is the same as t.format("%H:%M:%S%.f").

The string printed can be readily parsed via the parse method on str.

It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)

Example

use chrono::NaiveTime;

assert_eq!(format!("{:?}", NaiveTime::from_hms(23, 56, 4)),              "23:56:04");
assert_eq!(format!("{:?}", NaiveTime::from_hms_milli(23, 56, 4, 12)),    "23:56:04.012");
assert_eq!(format!("{:?}", NaiveTime::from_hms_micro(23, 56, 4, 1234)),  "23:56:04.001234");
assert_eq!(format!("{:?}", NaiveTime::from_hms_nano(23, 56, 4, 123456)), "23:56:04.000123456");

Leap seconds may also be used.

assert_eq!(format!("{:?}", NaiveTime::from_hms_milli(6, 59, 59, 1_500)), "06:59:60.500");

impl Debug for otter_api_tests::imports::chrono::ParseError[src]

impl Debug for ParseMonthError[src]

impl Debug for ParseWeekdayError[src]

impl Debug for Utc[src]

impl Debug for otter_api_tests::imports::env_logger::filter::Builder

impl Debug for otter_api_tests::imports::env_logger::filter::Filter

impl Debug for Formatter

impl Debug for otter_api_tests::imports::env_logger::fmt::Style

impl Debug for otter_api_tests::imports::env_logger::fmt::Timestamp

impl Debug for otter_api_tests::imports::env_logger::Builder

impl Debug for Logger

impl Debug for AllocError[src]

impl Debug for Layout1.28.0[src]

impl Debug for LayoutError1.50.0[src]

impl Debug for TypeId[src]

impl Debug for CpuidResult1.27.0[src]

impl Debug for __m1281.27.0[src]

impl Debug for __m128bh[src]

impl Debug for __m128d1.27.0[src]

impl Debug for __m128i1.27.0[src]

impl Debug for __m2561.27.0[src]

impl Debug for __m256bh[src]

impl Debug for __m256d1.27.0[src]

impl Debug for __m256i1.27.0[src]

impl Debug for __m512[src]

impl Debug for __m512bh[src]

impl Debug for __m512d[src]

impl Debug for __m512i[src]

impl Debug for otter_api_tests::imports::failure::_core::array::TryFromSliceError1.34.0[src]

impl Debug for otter_api_tests::imports::failure::_core::ascii::EscapeDefault1.16.0[src]

impl Debug for BorrowError1.13.0[src]

impl Debug for BorrowMutError1.13.0[src]

impl Debug for CharTryFromError1.34.0[src]

impl Debug for DecodeUtf16Error1.9.0[src]

impl Debug for otter_api_tests::imports::failure::_core::char::EscapeDebug1.20.0[src]

impl Debug for otter_api_tests::imports::failure::_core::char::EscapeDefault[src]

impl Debug for otter_api_tests::imports::failure::_core::char::EscapeUnicode[src]

impl Debug for ParseCharError1.20.0[src]

impl Debug for ToLowercase[src]

impl Debug for ToUppercase[src]

impl Debug for SipHasher[src]

impl Debug for PhantomPinned1.33.0[src]

impl Debug for NonZeroI81.34.0[src]

impl Debug for NonZeroI161.34.0[src]

impl Debug for NonZeroI321.34.0[src]

impl Debug for NonZeroI641.34.0[src]

impl Debug for NonZeroI1281.34.0[src]

impl Debug for NonZeroIsize1.34.0[src]

impl Debug for NonZeroU81.28.0[src]

impl Debug for NonZeroU161.28.0[src]

impl Debug for NonZeroU321.28.0[src]

impl Debug for NonZeroU641.28.0[src]

impl Debug for NonZeroU1281.28.0[src]

impl Debug for otter_api_tests::imports::failure::_core::num::ParseFloatError[src]

impl Debug for ParseIntError[src]

impl Debug for RangeFull[src]

impl Debug for NoneError[src]

impl Debug for Utf8Lossy[src]

impl Debug for AtomicBool1.3.0[src]

impl Debug for AtomicI81.34.0[src]

impl Debug for AtomicI161.34.0[src]

impl Debug for AtomicI321.34.0[src]

impl Debug for AtomicI641.34.0[src]

impl Debug for AtomicIsize1.3.0[src]

impl Debug for AtomicU81.34.0[src]

impl Debug for AtomicU161.34.0[src]

impl Debug for AtomicU321.34.0[src]

impl Debug for AtomicU641.34.0[src]

impl Debug for AtomicUsize1.3.0[src]

impl Debug for RawWaker1.36.0[src]

impl Debug for RawWakerVTable1.36.0[src]

impl Debug for Waker1.36.0[src]

impl Debug for otter_api_tests::imports::failure::Backtrace

impl Debug for otter_api_tests::imports::failure::Error

impl Debug for FsStats[src]

impl Debug for otter_api_tests::imports::glob::GlobError[src]

impl Debug for otter_api_tests::imports::glob::Pattern[src]

impl Debug for otter_api_tests::imports::glob::PatternError[src]

impl Debug for Dl_info

impl Debug for Elf32_Chdr

impl Debug for Elf32_Ehdr

impl Debug for Elf32_Phdr

impl Debug for Elf32_Shdr

impl Debug for Elf32_Sym

impl Debug for Elf64_Chdr

impl Debug for Elf64_Ehdr

impl Debug for Elf64_Phdr

impl Debug for Elf64_Shdr

impl Debug for Elf64_Sym

impl Debug for __c_anonymous_sockaddr_can_j1939

impl Debug for __c_anonymous_sockaddr_can_tp

impl Debug for __exit_status

impl Debug for __timeval

impl Debug for _libc_fpstate

impl Debug for _libc_fpxreg

impl Debug for _libc_xmmreg

impl Debug for addrinfo

impl Debug for af_alg_iv

impl Debug for aiocb

impl Debug for arpd_request

impl Debug for arphdr

impl Debug for arpreq

impl Debug for arpreq_old

impl Debug for can_filter

impl Debug for cpu_set_t

impl Debug for dirent64

impl Debug for dirent

impl Debug for dl_phdr_info

impl Debug for dqblk

impl Debug for epoll_event

impl Debug for fanotify_event_metadata

impl Debug for fanotify_response

impl Debug for fd_set

impl Debug for ff_condition_effect

impl Debug for ff_constant_effect

impl Debug for ff_effect

impl Debug for ff_envelope

impl Debug for ff_periodic_effect

impl Debug for ff_ramp_effect

impl Debug for ff_replay

impl Debug for ff_rumble_effect

impl Debug for ff_trigger

impl Debug for flock64

impl Debug for flock

impl Debug for fsid_t

impl Debug for genlmsghdr

impl Debug for glob64_t

impl Debug for glob_t

impl Debug for group

impl Debug for hostent

impl Debug for if_nameindex

impl Debug for ifaddrs

impl Debug for in6_addr

impl Debug for in6_pktinfo

impl Debug for in6_rtmsg

impl Debug for in_addr

impl Debug for in_pktinfo

impl Debug for otter_api_tests::imports::libc::inotify_event

impl Debug for input_absinfo

impl Debug for input_event

impl Debug for input_id

impl Debug for input_keymap_entry

impl Debug for input_mask

impl Debug for iovec

impl Debug for ip_mreq

impl Debug for ip_mreq_source

impl Debug for ip_mreqn

impl Debug for ipc_perm

impl Debug for ipv6_mreq

impl Debug for itimerspec

impl Debug for itimerval

impl Debug for lconv

impl Debug for linger

impl Debug for mallinfo

impl Debug for mcontext_t

impl Debug for mmsghdr

impl Debug for mntent

impl Debug for mq_attr

impl Debug for msginfo

impl Debug for msqid_ds

impl Debug for nl_mmap_hdr

impl Debug for nl_mmap_req

impl Debug for nl_pktinfo

impl Debug for nlattr

impl Debug for nlmsgerr

impl Debug for nlmsghdr

impl Debug for ntptimeval

impl Debug for packet_mreq

impl Debug for passwd

impl Debug for pollfd

impl Debug for posix_spawn_file_actions_t

impl Debug for posix_spawnattr_t

impl Debug for protoent

impl Debug for pthread_attr_t

impl Debug for pthread_cond_t

impl Debug for pthread_condattr_t

impl Debug for pthread_mutex_t

impl Debug for pthread_mutexattr_t

impl Debug for pthread_rwlock_t

impl Debug for pthread_rwlockattr_t

impl Debug for regex_t

impl Debug for regmatch_t

impl Debug for rlimit64

impl Debug for rlimit

impl Debug for rtentry

impl Debug for rusage

impl Debug for sched_param

impl Debug for sem_t

impl Debug for sembuf

impl Debug for servent

impl Debug for shmid_ds

impl Debug for sigaction

impl Debug for sigevent

impl Debug for siginfo_t

impl Debug for sigset_t

impl Debug for sigval

impl Debug for sock_extended_err

impl Debug for sockaddr_alg

impl Debug for sockaddr_ll

impl Debug for sockaddr_nl

impl Debug for sockaddr_vm

impl Debug for spwd

impl Debug for stack_t

impl Debug for stat64

impl Debug for statfs64

impl Debug for statfs

impl Debug for statvfs64

impl Debug for statvfs

impl Debug for statx

impl Debug for statx_timestamp

impl Debug for sysinfo

impl Debug for termios2

impl Debug for termios

impl Debug for timespec

impl Debug for timeval

impl Debug for timex

impl Debug for tm

impl Debug for tms

impl Debug for ucontext_t

impl Debug for ucred

impl Debug for uinput_abs_setup

impl Debug for uinput_ff_erase

impl Debug for uinput_ff_upload

impl Debug for uinput_setup

impl Debug for uinput_user_dev

impl Debug for user

impl Debug for user_fpregs_struct

impl Debug for user_regs_struct

impl Debug for utimbuf

impl Debug for utmpx

impl Debug for utsname

impl Debug for ParseLevelError[src]

impl Debug for SetLoggerError[src]

impl Debug for Dir

impl Debug for otter_api_tests::imports::nix::dir::Entry

impl Debug for OwningIter

impl Debug for AtFlags

impl Debug for FallocateFlags

impl Debug for otter_api_tests::imports::nix::fcntl::FdFlag

impl Debug for OFlag

impl Debug for SealFlag

impl Debug for SpliceFFlags

impl Debug for InterfaceAddress

impl Debug for InterfaceAddressIterator

impl Debug for DeleteModuleFlags

impl Debug for ModuleInitFlags

impl Debug for MntFlags

impl Debug for otter_api_tests::imports::nix::mount::MsFlags

impl Debug for otter_api_tests::imports::nix::mqueue::FdFlag

impl Debug for MQ_OFlag

impl Debug for MqAttr

impl Debug for InterfaceFlags

impl Debug for PollFd

impl Debug for PollFlags

impl Debug for ForkptyResult

impl Debug for OpenptyResult

impl Debug for PtyMaster

impl Debug for winsize

impl Debug for CloneFlags

impl Debug for CpuSet

impl Debug for EpollCreateFlags

impl Debug for EpollEvent

impl Debug for EpollFlags

impl Debug for EfdFlags

impl Debug for AddWatchFlags

impl Debug for InitFlags

impl Debug for Inotify

impl Debug for InotifyEvent

impl Debug for otter_api_tests::imports::nix::sys::inotify::WatchDescriptor

impl Debug for MemFdCreateFlag

impl Debug for MRemapFlags

impl Debug for MapFlags

impl Debug for MlockAllFlags

impl Debug for otter_api_tests::imports::nix::sys::mman::MsFlags

impl Debug for ProtFlags

impl Debug for Persona

impl Debug for Options

impl Debug for Dqblk

impl Debug for QuotaValidFlags

impl Debug for FdSet

impl Debug for SaFlags

impl Debug for SigAction

impl Debug for SigEvent

impl Debug for SignalIterator

impl Debug for SfdFlags

impl Debug for SigSet

impl Debug for SignalFd

impl Debug for signalfd_siginfo

impl Debug for AcceptConn

impl Debug for AlgSetAeadAuthSize

impl Debug for BindToDevice

impl Debug for Broadcast

impl Debug for IpAddMembership

impl Debug for IpDropMembership

impl Debug for IpMulticastLoop

impl Debug for IpMulticastTtl

impl Debug for IpTransparent

impl Debug for Ipv4PacketInfo

impl Debug for Ipv6AddMembership

impl Debug for Ipv6DropMembership

impl Debug for Ipv6RecvPacketInfo

impl Debug for KeepAlive

impl Debug for Linger

impl Debug for Mark

impl Debug for OobInline

impl Debug for OriginalDst

impl Debug for PassCred

impl Debug for PeerCredentials

impl Debug for RcvBuf

impl Debug for RcvBufForce

impl Debug for ReceiveTimeout

impl Debug for ReceiveTimestamp

impl Debug for ReuseAddr

impl Debug for ReusePort

impl Debug for SendTimeout

impl Debug for SndBuf

impl Debug for SndBufForce

impl Debug for otter_api_tests::imports::nix::sys::socket::sockopt::SockType

impl Debug for SocketError

impl Debug for TcpCongestion

impl Debug for TcpKeepCount

impl Debug for TcpKeepIdle

impl Debug for TcpKeepInterval

impl Debug for TcpNoDelay

impl Debug for UdpGroSegment

impl Debug for UdpGsoSegment

impl Debug for AlgAddr

impl Debug for IpMembershipRequest

impl Debug for otter_api_tests::imports::nix::sys::socket::Ipv4Addr

impl Debug for otter_api_tests::imports::nix::sys::socket::Ipv6Addr

impl Debug for Ipv6MembershipRequest

impl Debug for LinkAddr

impl Debug for MsgFlags

impl Debug for NetlinkAddr

impl Debug for SockFlag

impl Debug for UnixAddr

impl Debug for UnixCredentials

impl Debug for VsockAddr

impl Debug for cmsghdr

impl Debug for msghdr

impl Debug for sockaddr

impl Debug for sockaddr_in6

impl Debug for sockaddr_in

impl Debug for sockaddr_storage

impl Debug for sockaddr_un

impl Debug for stat

impl Debug for Mode

impl Debug for SFlag

impl Debug for FsType

impl Debug for Statfs

impl Debug for FsFlags

impl Debug for Statvfs

impl Debug for SysInfo

impl Debug for ControlFlags

impl Debug for InputFlags

impl Debug for LocalFlags

impl Debug for OutputFlags

impl Debug for Termios

impl Debug for TimeVal

impl Debug for TimerFd

impl Debug for TimerFlags

impl Debug for TimerSetTimeFlags

impl Debug for RemoteIoVec

impl Debug for UtsName

impl Debug for WaitPidFlag

impl Debug for otter_api_tests::imports::nix::time::ClockId

impl Debug for UContext

impl Debug for OnceBool

impl Debug for OnceNonZeroUsize

impl Debug for FloatIsNan

impl Debug for DecodeErr

impl Debug for IgnoredAny[src]

impl Debug for otter_api_tests::imports::otter_base::imports::serde::de::value::Error[src]

impl Debug for otter_api_tests::imports::parking_lot::Once

impl Debug for otter_api_tests::imports::parking_lot::WaitTimeoutResult

impl Debug for Passwd

impl Debug for otter_api_tests::imports::regex::bytes::CaptureLocations

impl Debug for otter_api_tests::imports::regex::bytes::Regex

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Shows the original regular expression.

impl Debug for otter_api_tests::imports::regex::bytes::RegexBuilder

impl Debug for otter_api_tests::imports::regex::bytes::RegexSet

impl Debug for otter_api_tests::imports::regex::bytes::RegexSetBuilder

impl Debug for otter_api_tests::imports::regex::bytes::SetMatches

impl Debug for otter_api_tests::imports::regex::bytes::SetMatchesIntoIter

impl Debug for otter_api_tests::imports::regex::CaptureLocations

impl Debug for otter_api_tests::imports::regex::RegexBuilder

impl Debug for otter_api_tests::imports::regex::RegexSet

impl Debug for otter_api_tests::imports::regex::RegexSetBuilder

impl Debug for otter_api_tests::imports::regex::SetMatches

impl Debug for otter_api_tests::imports::regex::SetMatchesIntoIter

impl Debug for DefaultConfig

impl Debug for Raw

impl Debug for DefaultKey[src]

impl Debug for KeyData[src]

impl Debug for otter_api_tests::imports::toml::de::Error[src]

impl Debug for Datetime[src]

impl Debug for DatetimeParseError[src]

impl Debug for otter_api_tests::imports::toml::value::Map<String, Value>[src]

impl Debug for NonblockingUnixSeqpacketConn

impl Debug for NonblockingUnixSeqpacketListener

impl Debug for UnixSeqpacketConn

impl Debug for UnixSeqpacketListener

impl Debug for UnixSocketAddr

impl Debug for otter_api_tests::io::Empty1.16.0[src]

impl Debug for otter_api_tests::io::Error[src]

impl Debug for Initializer[src]

impl Debug for otter_api_tests::io::Repeat1.16.0[src]

impl Debug for Sink1.16.0[src]

impl Debug for Stderr1.16.0[src]

impl Debug for Stdin1.16.0[src]

impl Debug for Stdout1.16.0[src]

impl Debug for RecvError[src]

impl Debug for CompactFormatter[src]

impl Debug for otter_api_tests::serde_json::Error[src]

impl Debug for otter_api_tests::serde_json::Map<String, Value>[src]

impl Debug for Number[src]

impl Debug for ParseBoolError[src]

impl Debug for Utf8Error[src]

impl Debug for AccessRecord[src]

impl Debug for AccountId[src]

impl Debug for AccountName[src]

impl Debug for AccountNotFound[src]

impl Debug for AccountRecord[src]

impl Debug for Accounts[src]

impl Debug for AccountsGuard[src]

impl Debug for CircleShape[src]

impl Debug for Client[src]

impl Debug for ClientId[src]

impl Debug for ClientSequence[src]

impl Debug for ColourSpec[src]

impl Debug for CommittedLogEntry[src]

impl Debug for CompassAngle[src]

impl Debug for Data[src]

impl Debug for DataLoadPlayer[src]

impl Debug for DirSubst[src]

impl Debug for ExecuteGameChangeUpdates[src]

impl Debug for ExitStatusError[src]

impl Debug for FaceId[src]

impl Debug for FakeRngSpec[src]

impl Debug for FixedToken[src]

impl Debug for FooParseError[src]

impl Debug for GPiece[src]

impl Debug for GPieces[src]

impl Debug for GPlayer[src]

impl Debug for GameBeingDestroyed[src]

impl Debug for GameOccults[src]

impl Debug for GameSpec[src]

impl Debug for GameState[src]

impl Debug for Generation[src]

impl Debug for GoodItemName[src]

impl Debug for Html

impl Debug for HtmlStr

impl Debug for IOccults[src]

impl Debug for IPiece[src]

impl Debug for IPieceTraitObj[src]

impl Debug for IPieces[src]

impl Debug for IPlayer[src]

impl Debug for Instance[src]

impl Debug for InstanceContainer[src]

impl Debug for InstanceName[src]

impl Debug for InstanceRef[src]

impl Debug for InstanceWeakRef[src]

impl Debug for InternalLogicError[src]

impl Debug for LinksTable[src]

impl Debug for LogEntry[src]

impl Debug for MgmtChannel[src]

impl Debug for MgmtChannelForGame[src]

impl Debug for ModifyingPieces[src]

impl Debug for Notch[src]

impl Debug for Notches[src]

impl Debug for OccId[src]

impl Debug for OccultIlkData[src]

impl Debug for OccultIlkId[src]

impl Debug for OccultIlkName[src]

impl Debug for OccultIlkOwningId[src]

impl Debug for OccultIlks[src]

impl Debug for OccultView[src]

impl Debug for Occultation[src]

impl Debug for OccultationViews[src]

impl Debug for OcculterRotationChecked[src]

impl Debug for Opts[src]

impl Debug for OwnerOccultationView[src]

impl Debug for PerPlayerIdMap[src]

impl Debug for PieceAliases[src]

impl Debug for PieceId[src]

impl Debug for PieceLabelLoaded[src]

impl Debug for PieceOccult[src]

impl Debug for PieceRenderInstructions[src]

impl Debug for PieceSpecLoaded[src]

impl Debug for PieceUpdate[src]

impl Debug for PiecesSpec[src]

impl Debug for PlayerAccessUnset[src]

impl Debug for PlayerId[src]

impl Debug for PlayerNotFound[src]

impl Debug for PlayerUpdates[src]

impl Debug for PreparedPieceImage[src]

impl Debug for PreparedPieceState[src]

impl Debug for PreparedUpdate[src]

impl Debug for PreparedUpdateEntry_Image[src]

impl Debug for PreparedUpdateEntry_Piece[src]

impl Debug for RawToken[src]

impl Debug for RawTokenVal[src]

impl Debug for RectShape[src]

impl Debug for RngWrap[src]

impl Debug for ServerConfig[src]

impl Debug for ServerConfigSpec[src]

impl Debug for SetupCore[src]

impl Debug for ShowUnocculted[src]

impl Debug for SimpleCommon[src]

impl Debug for Subst[src]

impl Debug for TableSpec[src]

impl Debug for otter_api_tests::Timestamp[src]

impl Debug for Timezone[src]

impl Debug for ToRecalculate[src]

impl Debug for TokenByEmail[src]

impl Debug for TokenDeliveryError[src]

impl Debug for TokenRevelationKey[src]

impl Debug for TokenRevelationValue[src]

impl Debug for TrackWantedTests[src]

impl Debug for UniformOccultationView[src]

impl Debug for UnsupportedColourSpec[src]

impl Debug for UoDescription[src]

impl Debug for UrlOnStdout[src]

impl Debug for UrlSpec[src]

impl Debug for VisibleAngleTransform[src]

impl Debug for VisiblePieceId[src]

impl Debug for WantedTestsOpt[src]

impl Debug for WholeServerConfig[src]

impl Debug for ZLevel[src]

impl Debug for AccessError1.26.0[src]

impl Debug for otter_api_tests::thread::Builder[src]

impl Debug for Thread[src]

impl Debug for ThreadId1.19.0[src]

impl Debug for SystemTime1.8.0[src]

impl Debug for SystemTimeError1.8.0[src]

impl Debug for AccessFlags

impl Debug for Gid

impl Debug for otter_api_tests::unistd::Group

impl Debug for Pid

impl Debug for User

impl Debug for otter_api_tests::unix::net::SocketAddr1.10.0[src]

impl Debug for UnixDatagram1.10.0[src]

impl Debug for UnixListener1.10.0[src]

impl Debug for UCred[src]

impl Debug for AddSubRangeDelta

impl Debug for Decrement

impl Debug for Increment

impl Debug for LimbVal

impl Debug for Mutable

impl Debug for MutateFirst

impl Debug for MutateLast

impl Debug for Overflow

impl Debug for otter_api_tests::zcoord::ParseError

impl Debug for RangeBackwards

impl Debug for TotallyUnboundedRange

impl Debug for Ent[src]

impl Debug for PlHeld[src]

impl Debug for PlHist[src]

impl Debug for Posx[src]

impl Debug for Deck[src]

impl Debug for Disc[src]

impl Debug for Hand[src]

impl Debug for OwnedCommon[src]

impl Debug for PieceLabel[src]

impl Debug for PlayerLabel[src]

impl Debug for Rect[src]

impl Debug for UpdateId[src]

impl Debug for AccessTokenInfo[src]

impl Debug for AccessTokenReport[src]

impl Debug for Alphanumeric[src]

impl Debug for Child1.16.0[src]

impl Debug for Command[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Format the program and arguments of a Command for display. Any non-utf8 data is lossily converted using the utf8 replacement character.

impl Debug for otter_api_tests::shapelib::Condvar

impl Debug for Contents[src]

impl Debug for CoordinateOverflow

impl Debug for DescId[src]

impl Debug for otter_api_tests::shapelib::Duration1.27.0[src]

impl Debug for Explicit1[src]

impl Debug for otter_api_tests::shapelib::File[src]

impl Debug for FileData[src]

impl Debug for GroupData[src]

impl Debug for GroupDefn[src]

impl Debug for GroupDetails[src]

impl Debug for Instant1.8.0[src]

impl Debug for otter_api_tests::shapelib::Item[src]

impl Debug for ItemEnquiryData[src]

impl Debug for ItemSpec[src]

impl Debug for LogSpecification

impl Debug for MultiSpec[src]

impl Debug for NonZeroUsize1.28.0[src]

impl Debug for OsStr[src]

impl Debug for PathBuf[src]

impl Debug for RecolourData[src]

impl Debug for otter_api_tests::shapelib::Regex

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Shows the original regular expression.

impl Debug for Stdio1.16.0[src]

impl Debug for SvgId[src]

impl Debug for TimeSpec

impl Debug for TryFromIntError1.34.0[src]

impl Debug for Uid

impl Debug for UnixStream1.10.0[src]

impl Debug for otter_api_tests::shapelib::Url[src]

Debug the serialization of this URL.

impl Debug for ZCoord

impl Debug for dyn Any + 'static[src]

impl Debug for dyn Any + 'static + Send[src]

impl Debug for dyn Any + 'static + Sync + Send1.28.0[src]

impl<'_> Debug for SplitPaths<'_>1.16.0[src]

impl<'_> Debug for Arguments<'_>[src]

impl<'_> Debug for otter_api_tests::imports::failure::_core::task::Context<'_>1.36.0[src]

impl<'_> Debug for StderrLock<'_>1.16.0[src]

impl<'_> Debug for StdinLock<'_>1.16.0[src]

impl<'_> Debug for StdoutLock<'_>1.16.0[src]

impl<'_> Debug for Chars<'_>1.38.0[src]

impl<'_> Debug for EncodeUtf16<'_>1.17.0[src]

impl<'_, B> Debug for Cow<'_, B> where
    B: Debug + ToOwned + ?Sized,
    <B as ToOwned>::Owned: Debug
[src]

impl<'_, F> Debug for CharPredicateSearcher<'_, F> where
    F: FnMut(char) -> bool
[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::Entry<'_, K, V> where
    K: Debug + Ord,
    V: Debug
1.12.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::Entry<'_, K, V> where
    K: Debug,
    V: Debug
1.12.0[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::Iter<'_, K, V> where
    K: Debug,
    V: Debug
1.17.0[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::Keys<'_, K, V> where
    K: Debug
1.17.0[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::OccupiedEntry<'_, K, V> where
    K: Debug + Ord,
    V: Debug
1.12.0[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::OccupiedError<'_, K, V> where
    K: Debug + Ord,
    V: Debug
[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::Range<'_, K, V> where
    K: Debug,
    V: Debug
1.17.0[src]

impl<'_, K, V> Debug for RangeMut<'_, K, V> where
    K: Debug,
    V: Debug
1.17.0[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::VacantEntry<'_, K, V> where
    K: Debug + Ord
1.12.0[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::Values<'_, K, V> where
    V: Debug
1.17.0[src]

impl<'_, K, V> Debug for otter_api_tests::btree_map::ValuesMut<'_, K, V> where
    V: Debug
1.10.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::Drain<'_, K, V> where
    K: Debug,
    V: Debug
1.16.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::Iter<'_, K, V> where
    K: Debug,
    V: Debug
1.16.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::IterMut<'_, K, V> where
    K: Debug,
    V: Debug
1.16.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::Keys<'_, K, V> where
    K: Debug
1.16.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::OccupiedEntry<'_, K, V> where
    K: Debug,
    V: Debug
1.12.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::OccupiedError<'_, K, V> where
    K: Debug,
    V: Debug
[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::VacantEntry<'_, K, V> where
    K: Debug
1.12.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::Values<'_, K, V> where
    V: Debug
1.16.0[src]

impl<'_, K, V> Debug for otter_api_tests::hash_map::ValuesMut<'_, K, V> where
    V: Debug
1.16.0[src]

impl<'_, K, V, F> Debug for otter_api_tests::btree_map::DrainFilter<'_, K, V, F> where
    K: Debug,
    V: Debug,
    F: FnMut(&K, &mut V) -> bool
[src]

impl<'_, K, V, S> Debug for RawEntryMut<'_, K, V, S> where
    K: Debug,
    V: Debug
[src]

impl<'_, K, V, S> Debug for RawEntryBuilder<'_, K, V, S>[src]

impl<'_, K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>[src]

impl<'_, K, V, S> Debug for RawOccupiedEntryMut<'_, K, V, S> where
    K: Debug,
    V: Debug
[src]

impl<'_, K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>[src]

impl<'_, T> Debug for otter_api_tests::btree_set::Difference<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for otter_api_tests::btree_set::Intersection<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for otter_api_tests::btree_set::Iter<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for otter_api_tests::btree_set::SymmetricDifference<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for otter_api_tests::btree_set::Union<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for Ref<'_, T> where
    T: Debug + ?Sized
[src]

impl<'_, T> Debug for otter_api_tests::imports::failure::_core::slice::Iter<'_, T> where
    T: Debug
1.9.0[src]

impl<'_, T> Debug for otter_api_tests::imports::failure::_core::slice::IterMut<'_, T> where
    T: Debug
1.9.0[src]

impl<'_, T> Debug for RefMut<'_, T> where
    T: Debug + ?Sized
[src]

impl<'_, T, F> Debug for otter_api_tests::btree_set::DrainFilter<'_, T, F> where
    T: Debug,
    F: FnMut(&T) -> bool
[src]

impl<'_, T, P> Debug for otter_api_tests::imports::failure::_core::slice::RSplit<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.27.0[src]

impl<'_, T, P> Debug for RSplitMut<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.27.0[src]

impl<'_, T, P> Debug for otter_api_tests::imports::failure::_core::slice::RSplitN<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.9.0[src]

impl<'_, T, P> Debug for RSplitNMut<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.9.0[src]

impl<'_, T, P> Debug for otter_api_tests::imports::failure::_core::slice::Split<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.9.0[src]

impl<'_, T, P> Debug for otter_api_tests::imports::failure::_core::slice::SplitInclusive<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.51.0[src]

impl<'_, T, P> Debug for SplitInclusiveMut<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.51.0[src]

impl<'_, T, P> Debug for SplitMut<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.9.0[src]

impl<'_, T, P> Debug for otter_api_tests::imports::failure::_core::slice::SplitN<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.9.0[src]

impl<'_, T, P> Debug for SplitNMut<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.9.0[src]

impl<'a> Debug for otter_api_tests::imports::chrono::format::Item<'a>[src]

impl<'a> Debug for FcntlArg<'a>

impl<'a> Debug for Buffer<'a>

impl<'a> Debug for ControlMessage<'a>

impl<'a> Debug for Unexpected<'a>[src]

impl<'a> Debug for AddrName<'a>

impl<'a> Debug for Record<'a>[src]

impl<'a> Debug for StrftimeItems<'a>[src]

impl<'a> Debug for Env<'a>

impl<'a> Debug for otter_api_tests::imports::failure::_core::panic::Location<'a>1.10.0[src]

impl<'a> Debug for PanicInfo<'a>1.10.0[src]

impl<'a> Debug for EscapeAscii<'a>[src]

impl<'a> Debug for Utf8LossyChunk<'a>[src]

impl<'a> Debug for otter_api_tests::imports::log::Metadata<'a>[src]

impl<'a> Debug for MetadataBuilder<'a>[src]

impl<'a> Debug for RecordBuilder<'a>[src]

impl<'a> Debug for AioCb<'a>

impl<'a> Debug for LioCb<'a>

impl<'a> Debug for Fds<'a>

impl<'a> Debug for CmsgIterator<'a>

impl<'a> Debug for RecvMsg<'a>

impl<'a> Debug for otter_api_tests::imports::regex::bytes::SetMatchesIter<'a>

impl<'a> Debug for otter_api_tests::imports::regex::SetMatchesIter<'a>

impl<'a> Debug for RawRef<'a>

impl<'a> Debug for IoSlice<'a>1.36.0[src]

impl<'a> Debug for IoSliceMut<'a>1.36.0[src]

impl<'a> Debug for PrettyFormatter<'a>[src]

impl<'a> Debug for CharSearcher<'a>[src]

impl<'a> Debug for otter_api_tests::str::Bytes<'a>[src]

impl<'a> Debug for CharIndices<'a>[src]

impl<'a> Debug for otter_api_tests::str::EscapeDebug<'a>1.34.0[src]

impl<'a> Debug for otter_api_tests::str::EscapeDefault<'a>1.34.0[src]

impl<'a> Debug for otter_api_tests::str::EscapeUnicode<'a>1.34.0[src]

impl<'a> Debug for otter_api_tests::str::Lines<'a>[src]

impl<'a> Debug for LinesAny<'a>[src]

impl<'a> Debug for SplitAsciiWhitespace<'a>1.34.0[src]

impl<'a> Debug for SplitWhitespace<'a>1.1.0[src]

impl<'a> Debug for ApiPieceOpArgs<'a>[src]

impl<'a> Debug for otter_api_tests::unix::net::Incoming<'a>1.10.0[src]

impl<'a> Debug for SocketAncillary<'a>[src]

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>[src]

impl<'a, 'b> Debug for StrSearcher<'a, 'b>[src]

impl<'a, 'f> Debug for VaList<'a, 'f> where
    'f: 'a, 
[src]

impl<'a, A> Debug for otter_api_tests::imports::failure::_core::option::Iter<'a, A> where
    A: 'a + Debug
[src]

impl<'a, A> Debug for otter_api_tests::imports::failure::_core::option::IterMut<'a, A> where
    A: 'a + Debug
[src]

impl<'a, E> Debug for BytesDeserializer<'a, E>[src]

impl<'a, E> Debug for CowStrDeserializer<'a, E>[src]

impl<'a, E> Debug for StrDeserializer<'a, E>[src]

impl<'a, I> Debug for RecvMmsgData<'a, I> where
    I: Debug + AsRef<[IoVec<&'a mut [u8]>]> + 'a, 

impl<'a, I> Debug for otter_api_tests::imports::otter_base::imports::itertools::Format<'a, I> where
    I: Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<'a, I, C> Debug for SendMmsgData<'a, I, C> where
    C: Debug + AsRef<[ControlMessage<'a>]>,
    I: Debug + AsRef<[IoVec<&'a [u8]>]>, 

impl<'a, I, E> Debug for ProcessResults<'a, I, E> where
    E: 'a + Debug,
    I: Debug
[src]

impl<'a, I, F> Debug for TakeWhileRef<'a, I, F> where
    I: Iterator + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::Entry<'a, K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::Entry<'a, K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::btree_map::IterMut<'a, K, V> where
    K: 'a + Debug,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::basic::Drain<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::basic::Iter<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::basic::IterMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::basic::Keys<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::basic::Values<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::basic::ValuesMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::dense::Drain<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::dense::Iter<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::dense::IterMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::dense::Keys<'a, K, V> where
    K: 'a + Debug + Key,
    V: Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::dense::Values<'a, K, V> where
    K: 'a + Debug + Key,
    V: Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::dense::ValuesMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::hop::Drain<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::hop::Iter<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::hop::IterMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::hop::Keys<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::hop::Values<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::hop::ValuesMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::Drain<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::Iter<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::IterMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::Keys<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::OccupiedEntry<'a, K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::VacantEntry<'a, K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::Values<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::secondary::ValuesMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::Drain<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::Iter<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::IterMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::Keys<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::OccupiedEntry<'a, K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::VacantEntry<'a, K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::Values<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::ValuesMut<'a, K, V> where
    K: 'a + Debug + Key,
    V: 'a + Debug
[src]

impl<'a, K, V, F> Debug for otter_api_tests::hash_map::DrainFilter<'a, K, V, F> where
    F: FnMut(&K, &mut V) -> bool
[src]

impl<'a, P> Debug for MatchIndices<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
1.5.0[src]

impl<'a, P> Debug for otter_api_tests::str::Matches<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
1.2.0[src]

impl<'a, P> Debug for RMatchIndices<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
1.5.0[src]

impl<'a, P> Debug for RMatches<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
1.2.0[src]

impl<'a, P> Debug for otter_api_tests::str::RSplit<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, P> Debug for otter_api_tests::str::RSplitN<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, P> Debug for RSplitTerminator<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, P> Debug for otter_api_tests::str::Split<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, P> Debug for otter_api_tests::str::SplitInclusive<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
1.51.0[src]

impl<'a, P> Debug for otter_api_tests::str::SplitN<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, P> Debug for SplitTerminator<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, R> Debug for otter_api_tests::imports::regex::bytes::ReplacerRef<'a, R> where
    R: 'a + Debug + ?Sized

impl<'a, R> Debug for otter_api_tests::imports::regex::ReplacerRef<'a, R> where
    R: 'a + Debug + ?Sized

impl<'a, R> Debug for ReadRefReader<'a, R> where
    R: Debug + ?Sized

impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawMutex,
    G: 'a + GetThreadId

impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawMutex,
    G: 'a + GetThreadId

impl<'a, R, T> Debug for MappedMutexGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawMutex

impl<'a, R, T> Debug for MappedRwLockReadGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLock

impl<'a, R, T> Debug for MappedRwLockWriteGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLock

impl<'a, R, T> Debug for otter_api_tests::imports::parking_lot::lock_api::MutexGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawMutex

impl<'a, R, T> Debug for otter_api_tests::imports::parking_lot::lock_api::RwLockReadGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLock

impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLockUpgrade

impl<'a, R, T> Debug for otter_api_tests::imports::parking_lot::lock_api::RwLockWriteGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLock

impl<'a, T> Debug for otter_api_tests::btree_set::Range<'a, T> where
    T: 'a + Debug
1.17.0[src]

impl<'a, T> Debug for StyledValue<'a, T> where
    T: Debug

impl<'a, T> Debug for otter_api_tests::imports::failure::_core::result::Iter<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for otter_api_tests::imports::failure::_core::result::IterMut<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for Chunks<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for ChunksExact<'a, T> where
    T: 'a + Debug
1.31.0[src]

impl<'a, T> Debug for ChunksExactMut<'a, T> where
    T: 'a + Debug
1.31.0[src]

impl<'a, T> Debug for ChunksMut<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for RChunks<'a, T> where
    T: 'a + Debug
1.31.0[src]

impl<'a, T> Debug for RChunksExact<'a, T> where
    T: 'a + Debug
1.31.0[src]

impl<'a, T> Debug for RChunksExactMut<'a, T> where
    T: 'a + Debug
1.31.0[src]

impl<'a, T> Debug for RChunksMut<'a, T> where
    T: 'a + Debug
1.31.0[src]

impl<'a, T> Debug for Windows<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for otter_api_tests::mpsc::Iter<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for TryIter<'a, T> where
    T: 'a + Debug
1.15.0[src]

impl<'a, T, P> Debug for GroupBy<'a, T, P> where
    T: 'a + Debug
[src]

impl<'a, T, P> Debug for GroupByMut<'a, T, P> where
    T: 'a + Debug
[src]

impl<'a, T, const N: usize> Debug for ArrayChunks<'a, T, N> where
    T: 'a + Debug
[src]

impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N> where
    T: 'a + Debug
[src]

impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N> where
    T: 'a + Debug
[src]

impl<'a, W> Debug for ExtFieldSerializer<'a, W> where
    W: Debug

impl<'a, W> Debug for ExtSerializer<'a, W> where
    W: Debug

impl<'a, W, C> Debug for Compound<'a, W, C> where
    C: 'a + Debug,
    W: 'a + Debug

impl<'a, W, C> Debug for MaybeUnknownLengthCompound<'a, W, C> where
    C: 'a + Debug,
    W: 'a + Debug

impl<'b, 'c, T> Debug for Reference<'b, 'c, T> where
    T: 'static + Debug + ?Sized

impl<'c, 't> Debug for otter_api_tests::imports::regex::bytes::SubCaptureMatches<'c, 't> where
    't: 'c, 

impl<'c, 't> Debug for otter_api_tests::imports::regex::SubCaptureMatches<'c, 't> where
    't: 'c, 

impl<'d> Debug for otter_api_tests::imports::nix::dir::Iter<'d>

impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>[src]

impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>[src]

impl<'de, I, E> Debug for MapDeserializer<'de, I, E> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Pair,
    <<I as Iterator>::Item as Pair>::Second: Debug
[src]

impl<'f> Debug for VaListImpl<'f>[src]

impl<'g> Debug for InstanceGuard<'g>[src]

impl<'i, P> Debug for EffectiveACL<'i, P> where
    P: Debug + Perm
[src]

impl<'r> Debug for otter_api_tests::imports::regex::bytes::CaptureNames<'r>

impl<'r> Debug for otter_api_tests::imports::regex::CaptureNames<'r>

impl<'r, 't> Debug for otter_api_tests::imports::regex::bytes::CaptureMatches<'r, 't>

impl<'r, 't> Debug for otter_api_tests::imports::regex::bytes::Matches<'r, 't>

impl<'r, 't> Debug for otter_api_tests::imports::regex::bytes::Split<'r, 't>

impl<'r, 't> Debug for otter_api_tests::imports::regex::bytes::SplitN<'r, 't>

impl<'r, 't> Debug for otter_api_tests::imports::regex::CaptureMatches<'r, 't>

impl<'r, 't> Debug for otter_api_tests::imports::regex::Matches<'r, 't>

impl<'r, 't> Debug for otter_api_tests::imports::regex::Split<'r, 't>

impl<'r, 't> Debug for otter_api_tests::imports::regex::SplitN<'r, 't>

impl<'t> Debug for otter_api_tests::imports::regex::bytes::Captures<'t>

impl<'t> Debug for otter_api_tests::imports::regex::bytes::Match<'t>

impl<'t> Debug for otter_api_tests::imports::regex::bytes::NoExpand<'t>

impl<'t> Debug for otter_api_tests::imports::regex::Captures<'t>

impl<'t> Debug for otter_api_tests::imports::regex::Match<'t>

impl<'t> Debug for otter_api_tests::imports::regex::NoExpand<'t>

impl<'u> Debug for TransmitUpdate<'u>[src]

impl<A> Debug for otter_api_tests::imports::failure::_core::option::IntoIter<A> where
    A: Debug
[src]

impl<A> Debug for ArrayString<A> where
    A: Array<Item = u8> + Copy
[src]

impl<A> Debug for otter_api_tests::imports::otter_base::imports::arrayvec::IntoIter<A> where
    A: Array,
    <A as Array>::Item: Debug
[src]

impl<A> Debug for RepeatN<A> where
    A: Debug
[src]

impl<A> Debug for MapAccessDeserializer<A> where
    A: Debug
[src]

impl<A> Debug for SeqAccessDeserializer<A> where
    A: Debug
[src]

impl<A> Debug for otter_api_tests::iter::Repeat<A> where
    A: Debug
[src]

impl<A> Debug for otter_api_tests::shapelib::ArrayVec<A> where
    A: Array,
    <A as Array>::Item: Debug
[src]

impl<A> Debug for Authorisation<A> where
    A: Debug
[src]

impl<A, B> Debug for EitherOrBoth<A, B> where
    B: Debug,
    A: Debug
[src]

impl<A, B> Debug for otter_api_tests::iter::Chain<A, B> where
    B: Debug,
    A: Debug
[src]

impl<A, B> Debug for otter_api_tests::iter::Zip<A, B> where
    B: Debug,
    A: Debug
[src]

impl<ASO, MR> Debug for IteratorCore<ASO, MR> where
    MR: Debug,
    ASO: Debug

impl<B> Debug for otter_api_tests::io::Lines<B> where
    B: Debug
[src]

impl<B> Debug for otter_api_tests::io::Split<B> where
    B: Debug
[src]

impl<B, C> Debug for ControlFlow<B, C> where
    C: Debug,
    B: Debug
[src]

impl<B: Debug + Substitutor, X: Debug + Substitutor> Debug for ExtendedSubst<B, X>[src]

impl<C> Debug for BinaryConfig<C> where
    C: Debug

impl<C> Debug for HumanReadableConfig<C> where
    C: Debug

impl<C> Debug for StructMapConfig<C> where
    C: Debug

impl<C> Debug for StructTupleConfig<C> where
    C: Debug

impl<C> Debug for VariantIntegerConfig<C> where
    C: Debug

impl<C> Debug for VariantStringConfig<C> where
    C: Debug

impl<D> Debug for OccultationKindGeneral<D> where
    D: Debug
[src]

impl<D> Debug for otter_api_tests::imports::failure::Context<D> where
    D: 'static + Display + Send + Sync

impl<Desc, Outl> Debug for GenericSimpleShape<Desc, Outl> where
    Desc: Debug,
    Outl: Debug
[src]

impl<Dyn> Debug for DynMetadata<Dyn> where
    Dyn: ?Sized
[src]

impl<E> Debug for Loop<E> where
    E: Debug
[src]

impl<E> Debug for ParseNotNanError<E> where
    E: Debug

impl<E> Debug for Compat<E> where
    E: Debug

impl<E> Debug for BoolDeserializer<E>[src]

impl<E> Debug for CharDeserializer<E>[src]

impl<E> Debug for F32Deserializer<E>[src]

impl<E> Debug for F64Deserializer<E>[src]

impl<E> Debug for I8Deserializer<E>[src]

impl<E> Debug for I16Deserializer<E>[src]

impl<E> Debug for I32Deserializer<E>[src]

impl<E> Debug for I64Deserializer<E>[src]

impl<E> Debug for I128Deserializer<E>[src]

impl<E> Debug for IsizeDeserializer<E>[src]

impl<E> Debug for StringDeserializer<E>[src]

impl<E> Debug for U8Deserializer<E>[src]

impl<E> Debug for U16Deserializer<E>[src]

impl<E> Debug for U32Deserializer<E>[src]

impl<E> Debug for U64Deserializer<E>[src]

impl<E> Debug for U128Deserializer<E>[src]

impl<E> Debug for UnitDeserializer<E>[src]

impl<E> Debug for UsizeDeserializer<E>[src]

impl<F> Debug for PollFn<F>[src]

impl<F> Debug for RepeatCall<F>[src]

impl<F> Debug for FromFn<F>1.34.0[src]

impl<F> Debug for OnceWith<F> where
    F: Debug
1.43.0[src]

impl<F> Debug for RepeatWith<F> where
    F: Debug
1.28.0[src]

impl<H> Debug for BuildHasherDefault<H>1.9.0[src]

impl<I> Debug for DelayedFormat<I> where
    I: Debug
[src]

impl<I> Debug for DecodeUtf16<I> where
    I: Debug + Iterator<Item = u16>, 
1.9.0[src]

impl<I> Debug for Combinations<I> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for CombinationsWithReplacement<I> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug,
    <I as Iterator>::Item: Clone
[src]

impl<I> Debug for ExactlyOneError<I> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for GroupingMap<I> where
    I: Debug
[src]

impl<I> Debug for MultiPeek<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for PeekNth<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for Permutations<I> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for Powerset<I> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for PutBack<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for PutBackN<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for RcIter<I> where
    I: Debug
[src]

impl<I> Debug for Step<I> where
    I: Debug
[src]

impl<I> Debug for Tee<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for Unique<I> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Hash,
    <I as Iterator>::Item: Eq,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for WhileSome<I> where
    I: Debug
[src]

impl<I> Debug for Cloned<I> where
    I: Debug
1.1.0[src]

impl<I> Debug for Copied<I> where
    I: Debug
1.36.0[src]

impl<I> Debug for Cycle<I> where
    I: Debug
[src]

impl<I> Debug for Enumerate<I> where
    I: Debug
[src]

impl<I> Debug for Fuse<I> where
    I: Debug
[src]

impl<I> Debug for Intersperse<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Clone,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for Peekable<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for Skip<I> where
    I: Debug
[src]

impl<I> Debug for StepBy<I> where
    I: Debug
1.28.0[src]

impl<I> Debug for otter_api_tests::iter::Take<I> where
    I: Debug
[src]

impl<I, E> Debug for SeqDeserializer<I, E> where
    I: Debug
[src]

impl<I, ElemF> Debug for otter_api_tests::imports::otter_base::imports::itertools::IntersperseWith<I, ElemF> where
    I: Debug + Iterator,
    ElemF: Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, F> Debug for Batching<I, F> where
    I: Debug
[src]

impl<I, F> Debug for KMergeBy<I, F> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, F> Debug for FilterMap<I, F> where
    I: Debug
1.9.0[src]

impl<I, F> Debug for Inspect<I, F> where
    I: Debug
1.9.0[src]

impl<I, F> Debug for otter_api_tests::iter::Map<I, F> where
    I: Debug
1.9.0[src]

impl<I, G> Debug for otter_api_tests::iter::IntersperseWith<I, G> where
    I: Iterator + Debug,
    G: Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, J> Debug for ConsTuples<I, J> where
    I: Debug + Iterator<Item = J>,
    J: Debug
[src]

impl<I, J> Debug for Interleave<I, J> where
    I: Debug,
    J: Debug
[src]

impl<I, J> Debug for InterleaveShortest<I, J> where
    I: Debug + Iterator,
    J: Debug + Iterator<Item = <I as Iterator>::Item>, 
[src]

impl<I, J> Debug for Product<I, J> where
    I: Debug + Iterator,
    J: Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, J> Debug for ZipEq<I, J> where
    I: Debug,
    J: Debug
[src]

impl<I, J, F> Debug for MergeBy<I, J, F> where
    I: Iterator + Debug,
    J: Iterator<Item = <I as Iterator>::Item> + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, J, F> Debug for MergeJoinBy<I, J, F> where
    I: Iterator + Debug,
    J: Iterator + Debug,
    <I as Iterator>::Item: Debug,
    <J as Iterator>::Item: Debug
[src]

impl<I, P> Debug for otter_api_tests::iter::Filter<I, P> where
    I: Debug
1.9.0[src]

impl<I, P> Debug for MapWhile<I, P> where
    I: Debug
[src]

impl<I, P> Debug for SkipWhile<I, P> where
    I: Debug
1.9.0[src]

impl<I, P> Debug for TakeWhile<I, P> where
    I: Debug
1.9.0[src]

impl<I, St, F> Debug for Scan<I, St, F> where
    I: Debug,
    St: Debug
1.9.0[src]

impl<I, T> Debug for CircularTupleWindows<I, T> where
    T: Debug + Clone + TupleCollect,
    I: Debug + Iterator<Item = <T as TupleCollect>::Item> + Clone
[src]

impl<I, T> Debug for TupleCombinations<I, T> where
    T: Debug + HasCombination<I>,
    I: Debug + Iterator,
    <T as HasCombination<I>>::Combination: Debug
[src]

impl<I, T> Debug for TupleWindows<I, T> where
    T: Debug + HomogeneousTuple,
    I: Debug + Iterator<Item = <T as TupleCollect>::Item>, 
[src]

impl<I, T> Debug for IndexSlice<I, T> where
    T: Debug + ?Sized,
    I: Idx

impl<I, T> Debug for otter_api_tests::shapelib::IndexVec<I, T> where
    T: Debug,
    I: Idx

impl<I, U> Debug for Flatten<I> where
    U: Debug + Iterator,
    I: Debug + Iterator,
    <I as Iterator>::Item: IntoIterator,
    <<I as Iterator>::Item as IntoIterator>::IntoIter == U,
    <<I as Iterator>::Item as IntoIterator>::Item == <U as Iterator>::Item
1.29.0[src]

impl<I, U, F> Debug for FlatMap<I, U, F> where
    U: IntoIterator,
    I: Debug,
    <U as IntoIterator>::IntoIter: Debug
1.9.0[src]

impl<I, V, F> Debug for UniqueBy<I, V, F> where
    V: Debug + Hash + Eq,
    I: Iterator + Debug
[src]

impl<Id> Debug for InstanceAccessDetails<Id> where
    Id: Debug
[src]

impl<Id> Debug for TokenRegistry<Id> where
    Id: Debug + AccessId
[src]

impl<Idx> Debug for otter_api_tests::imports::failure::_core::ops::Range<Idx> where
    Idx: Debug
[src]

impl<Idx> Debug for RangeFrom<Idx> where
    Idx: Debug
[src]

impl<Idx> Debug for RangeInclusive<Idx> where
    Idx: Debug
1.26.0[src]

impl<Idx> Debug for RangeTo<Idx> where
    Idx: Debug
[src]

impl<Idx> Debug for RangeToInclusive<Idx> where
    Idx: Debug
1.26.0[src]

impl<K, V> Debug for otter_api_tests::btree_map::IntoIter<K, V> where
    K: Debug,
    V: Debug
1.17.0[src]

impl<K, V> Debug for otter_api_tests::btree_map::IntoKeys<K, V> where
    K: Debug
[src]

impl<K, V> Debug for otter_api_tests::btree_map::IntoValues<K, V> where
    V: Debug
[src]

impl<K, V> Debug for otter_api_tests::hash_map::IntoIter<K, V> where
    K: Debug,
    V: Debug
1.16.0[src]

impl<K, V> Debug for otter_api_tests::hash_map::IntoKeys<K, V> where
    K: Debug
[src]

impl<K, V> Debug for otter_api_tests::hash_map::IntoValues<K, V> where
    V: Debug
[src]

impl<K, V> Debug for otter_api_tests::imports::slotmap::basic::IntoIter<K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<K, V> Debug for otter_api_tests::imports::slotmap::dense::IntoIter<K, V> where
    K: Debug,
    V: Debug
[src]

impl<K, V> Debug for otter_api_tests::imports::slotmap::hop::IntoIter<K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<K, V> Debug for otter_api_tests::imports::slotmap::secondary::IntoIter<K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<K, V> Debug for otter_api_tests::imports::slotmap::sparse_secondary::IntoIter<K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<K, V> Debug for HopSlotMap<K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<K, V> Debug for SecondaryMap<K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<K, V> Debug for SlotMap<K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<K, V> Debug for BTreeMap<K, V> where
    K: Debug,
    V: Debug
[src]

impl<K, V> Debug for DenseSlotMap<K, V> where
    K: Debug + Key,
    V: Debug
[src]

impl<K, V> Debug for EnumMap<K, V> where
    K: Enum<V> + Debug,
    V: Debug

impl<K, V, S> Debug for HashMap<K, V, S> where
    K: Debug,
    V: Debug
[src]

impl<K, V, S> Debug for SparseSecondaryMap<K, V, S> where
    S: Debug + BuildHasher,
    K: Debug + Key,
    V: Debug
[src]

impl<L, R> Debug for Either<L, R> where
    L: Debug,
    R: Debug
[src]

impl<NS, ZL> Debug for PieceUpdateOp<NS, ZL> where
    NS: Debug,
    ZL: Debug
[src]

impl<P> Debug for Pin<P> where
    P: Debug
1.33.0[src]

impl<P> Debug for LoadedAcl<P> where
    P: Debug + Perm
[src]

impl<P> Debug for PermSet<P> where
    P: Debug + Perm
[src]

impl<P, Z> Debug for PriOccultedGeneral<P, Z> where
    P: Debug,
    Z: Debug
[src]

impl<POEPU> Debug for ErrorSignaledViaUpdate<POEPU> where
    POEPU: Debug
[src]

impl<Perm> Debug for Acl<Perm> where
    Perm: Debug + Eq + Hash
[src]

impl<Perm> Debug for AclEntry<Perm> where
    Perm: Debug + Eq + Hash
[src]

impl<R> Debug for ReadReader<R> where
    R: Debug + Read

impl<R> Debug for otter_api_tests::io::Bytes<R> where
    R: Debug
[src]

impl<R> Debug for BufReader<R> where
    R: Debug
[src]

impl<R, C> Debug for Deserializer<R, C> where
    C: Debug,
    R: Debug

impl<R, G, T> Debug for ReentrantMutex<R, G, T> where
    T: Debug + ?Sized,
    R: RawMutex,
    G: GetThreadId

impl<R, T> Debug for otter_api_tests::imports::parking_lot::lock_api::Mutex<R, T> where
    T: Debug + ?Sized,
    R: RawMutex

impl<R, T> Debug for otter_api_tests::imports::parking_lot::lock_api::RwLock<R, T> where
    T: Debug + ?Sized,
    R: RawRwLock

impl<S, T> Debug for ConcreteDynCastConfig<S, T> where
    S: Debug + ?Sized,
    T: Debug + ?Sized

impl<St, F> Debug for Iterate<St, F> where
    St: Debug
[src]

impl<St, F> Debug for Unfold<St, F> where
    St: Debug
[src]

impl<T> Debug for RegionC<T> where
    T: Debug + Copy

impl<T> Debug for LocalResult<T> where
    T: Debug
[src]

impl<T> Debug for Bound<T> where
    T: Debug
1.17.0[src]

impl<T> Debug for Option<T> where
    T: Debug
[src]

impl<T> Debug for otter_api_tests::imports::failure::_core::task::Poll<T> where
    T: Debug
1.36.0[src]

impl<T> Debug for FoldWhile<T> where
    T: Debug
[src]

impl<T> Debug for MinMaxResult<T> where
    T: Debug
[src]

impl<T> Debug for otter_api_tests::imports::otter_base::imports::itertools::Position<T> where
    T: Debug
[src]

impl<T> Debug for otter_api_tests::mpsc::TrySendError<T>[src]

impl<T> Debug for otter_api_tests::btree_set::IntoIter<T> where
    T: Debug
[src]

impl<T> Debug for Reverse<T> where
    T: Debug
1.19.0[src]

impl<T> Debug for Cell<T> where
    T: Copy + Debug
[src]

impl<T> Debug for UnsafeCell<T> where
    T: ?Sized
1.9.0[src]

impl<T> Debug for Pending<T>1.48.0[src]

impl<T> Debug for otter_api_tests::imports::failure::_core::future::Ready<T> where
    T: Debug
1.48.0[src]

impl<T> Debug for otter_api_tests::imports::failure::_core::lazy::OnceCell<T> where
    T: Debug
[src]

impl<T> Debug for NonNull<T> where
    T: ?Sized
1.25.0[src]

impl<T> Debug for otter_api_tests::imports::failure::_core::result::IntoIter<T> where
    T: Debug
[src]

impl<T> Debug for AtomicPtr<T>1.3.0[src]

impl<T> Debug for SyncFailure<T> where
    T: Debug

impl<T> Debug for otter_api_tests::imports::lazy_init::Lazy<T> where
    T: Debug

impl<T> Debug for AlgSetKey<T> where
    T: Debug

impl<T> Debug for IoVec<T> where
    T: Debug

impl<T> Debug for OnceBox<T> where
    T: Debug

impl<T> Debug for otter_api_tests::imports::once_cell::sync::OnceCell<T> where
    T: Debug

impl<T> Debug for otter_api_tests::imports::once_cell::unsync::OnceCell<T> where
    T: Debug

impl<T> Debug for NotNan<T> where
    T: Debug

impl<T> Debug for CapacityError<T>[src]

impl<T> Debug for TupleBuffer<T> where
    T: Debug + HomogeneousTuple,
    <T as TupleCollect>::Buffer: Debug
[src]

impl<T> Debug for otter_api_tests::imports::otter_base::imports::itertools::Zip<T> where
    T: Debug
[src]

impl<T> Debug for Spanned<T> where
    T: Debug
[src]

impl<T> Debug for otter_api_tests::io::Cursor<T> where
    T: Debug
[src]

impl<T> Debug for otter_api_tests::io::Take<T> where
    T: Debug
[src]

impl<T> Debug for otter_api_tests::iter::Empty<T>1.9.0[src]

impl<T> Debug for otter_api_tests::iter::Once<T> where
    T: Debug
1.2.0[src]

impl<T> Debug for Rev<T> where
    T: Debug
[src]

impl<T> Debug for otter_api_tests::mpsc::IntoIter<T> where
    T: Debug
1.1.0[src]

impl<T> Debug for Receiver<T>1.8.0[src]

impl<T> Debug for otter_api_tests::mpsc::SendError<T>[src]

impl<T> Debug for Sender<T>1.8.0[src]

impl<T> Debug for SyncSender<T>1.8.0[src]

impl<T> Debug for IsHtmlFormatted<T> where
    T: Debug + Display

impl<T> Debug for JsonString<T> where
    T: Debug + Serialize
[src]

impl<T> Debug for OldNew<T> where
    T: Debug
[src]

impl<T> Debug for RefCell<T> where
    T: Debug + ?Sized
[src]

impl<T> Debug for JoinHandle<T>1.16.0[src]

impl<T> Debug for LocalKey<T> where
    T: 'static, 
1.16.0[src]

impl<T> Debug for otter_api_tests::thread::__FastLocalKeyInner<T>[src]

impl<T> Debug for otter_api_tests::thread::__OsLocalKeyInner<T>[src]

impl<T> Debug for Discriminant<T>1.21.0[src]

impl<T> Debug for ManuallyDrop<T> where
    T: Debug + ?Sized
1.20.0[src]

impl<T> Debug for Arc<T> where
    T: Debug + ?Sized
[src]

impl<T> Debug for BTreeSet<T> where
    T: Debug
[src]

impl<T> Debug for DebugReader<T> where
    T: Debug + Read
[src]

impl<T> Debug for OrderedFloat<T> where
    T: Debug

impl<T> Debug for PhantomData<T> where
    T: ?Sized
[src]

impl<T> Debug for PosC<T> where
    T: Debug + Copy

impl<T> Debug for RectC<T> where
    T: Debug + Copy

impl<T> Debug for VecDeque<T> where
    T: Debug
[src]

impl<T> Debug for Wrapping<T> where
    T: Debug
[src]

impl<T> Debug for MaybeUninit<T>1.41.0[src]

impl<T, A> Debug for Unauthorised<T, A> where
    T: Debug,
    A: Debug
[src]

impl<T, E> Debug for Result<T, E> where
    T: Debug,
    E: Debug
[src]

impl<T, F> Debug for otter_api_tests::imports::failure::_core::lazy::Lazy<T, F> where
    T: Debug
[src]

impl<T, F> Debug for otter_api_tests::imports::once_cell::sync::Lazy<T, F> where
    T: Debug

impl<T, F> Debug for otter_api_tests::imports::once_cell::unsync::Lazy<T, F> where
    T: Debug

impl<T, F> Debug for Successors<T, F> where
    T: Debug
1.34.0[src]

impl<T, F> Debug for Thunk<T, F> where
    T: Sync + Debug,
    F: Sync + FnOnce() -> T, 
[src]

impl<T, I> Debug for Deque<T, I> where
    T: Debug,
    I: Debug + Offset

impl<T, S> Debug for HashSet<T, S> where
    T: Debug
[src]

impl<T, U> Debug for ZipLongest<T, U> where
    T: Debug,
    U: Debug
[src]

impl<T, U> Debug for otter_api_tests::io::Chain<T, U> where
    T: Debug,
    U: Debug
[src]

impl<T, const N: usize> Debug for otter_api_tests::imports::failure::_core::array::IntoIter<T, N> where
    T: Debug
1.40.0[src]

impl<Tz> Debug for Date<Tz> where
    Tz: TimeZone
[src]

impl<Tz> Debug for DateTime<Tz> where
    Tz: TimeZone
[src]

impl<U> Debug for PreparedPieceUpdateGeneral<U> where
    U: Debug
[src]

impl<W> Debug for IntoInnerError<W> where
    W: Debug
[src]

impl<W> Debug for LineWriter<W> where
    W: Write + Debug
[src]

impl<W> Debug for BufWriter<W> where
    W: Write + Debug
[src]

impl<W, C> Debug for otter_api_tests::imports::rmp_serde::Serializer<W, C> where
    C: Debug,
    W: Debug

impl<Y, R> Debug for GeneratorState<Y, R> where
    R: Debug,
    Y: Debug
[src]

Loading content...