Trait orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::fmt::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 u128[src]

impl<'_, T, P> Debug for SplitInclusiveMut<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
[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> Debug for unsafe fn(A, B, C, D, E, F, G, H, I) -> 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> Debug for unsafe extern "C" fn(A, B, C, ...) -> Ret[src]

impl Debug for i8[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 Debug for u32[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 unsafe fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

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

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

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

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

impl Debug for i16[src]

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

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

impl Debug for i64[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, 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, 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> 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 Debug for bool[src]

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

impl Debug for u16[src]

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

impl Debug for str[src]

impl<T11> Debug for (T11,) where
    T11: 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, 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, D, E, F, G, H, I, J> Debug for fn(A, B, C, D, E, F, G, H, I, J) -> 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, const N: usize> Debug for [T; N] where
    T: Debug
[src]

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

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

impl<'_, T> Debug for &'_ mut T where
    T: Debug + ?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<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> Debug for fn(A, B, C, D, E, F, G) -> Ret[src]

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

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

impl Debug for f64[src]

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

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

impl Debug for char[src]

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

impl Debug for u64[src]

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

impl Debug for Utf8Lossy[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<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> Debug for unsafe fn(A, B, C, D) -> Ret[src]

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

impl Debug for i128[src]

impl<Ret, A, B, C, D, E> Debug for unsafe fn(A, B, C, D, E) -> Ret[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<T> Debug for *const T where
    T: ?Sized
[src]

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

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

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

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

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

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

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

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

impl<'a> Debug for Utf8LossyChunk<'a>[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, G, H, I, J> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> 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 u8[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, I, J, K> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret[src]

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

impl<Ret, A, B, C, D, E> Debug for unsafe extern "C" fn(A, B, C, D, E, ...) -> Ret[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<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<B> Debug for BitSet<B> where
    B: BitBlock

impl<B> Debug for BitVec<B> where
    B: BitBlock
[src]

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

impl Debug for LevelFilter[src]

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

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

impl Debug for ParseLevelError[src]

impl Debug for Level[src]

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

impl Debug for SetLoggerError[src]

impl<I> Debug for WhileSome<I> where
    I: Debug
[src]

impl<T> Debug for TupleBuffer<T> where
    T: Debug + TupleCollect,
    <T as TupleCollect>::Buffer: Debug
[src]

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

impl<I> Debug for Intersperse<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

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

impl<T> Debug for Position<T> where
    T: 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> Debug for InterleaveShortest<I, J> where
    I: Debug + Iterator,
    J: Debug + Iterator<Item = <I as Iterator>::Item>, 
[src]

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

impl<I> Debug for Step<I> where
    I: Debug
[src]

impl<I, J> Debug for Interleave<I, J> where
    I: Debug,
    J: Debug
[src]

impl<I, F> Debug for Batching<I, F> where
    I: Debug
[src]

impl<A, B> Debug for EitherOrBoth<A, B> where
    A: Debug,
    B: Debug
[src]

impl<I, F> Debug for Coalesce<I, F> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

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

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

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

impl<I, T> Debug for TupleCombinations<I, T> where
    I: Debug + Iterator,
    T: Debug + HasCombination<I>,
    <T as HasCombination<I>>::Combination: Debug
[src]

impl<I> Debug for PutBack<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I, J> Debug for ConsTuples<I, J> where
    I: Debug + Iterator<Item = J>,
    J: Debug
[src]

impl<St, F> Debug for Unfold<St, F> where
    St: Debug
[src]

impl<I, T> Debug for TupleWindows<I, T> where
    I: Debug + Iterator<Item = <T as TupleCollect>::Item>,
    T: Debug + TupleCollect, 
[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<T, U> Debug for ZipLongest<T, U> where
    T: Debug,
    U: Debug
[src]

impl<F> Debug for RepeatCall<F>[src]

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

impl<I> Debug for ExactlyOneError<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I, Pred> Debug for DedupBy<I, Pred> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, J> Debug for ZipEq<I, J> where
    I: Debug,
    J: Debug
[src]

impl<St, F> Debug for Iterate<St, F> where
    St: Debug
[src]

impl<I, J> Debug for Product<I, J> where
    I: Debug + Iterator,
    J: Debug,
    <I as Iterator>::Item: Debug
[src]

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

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

impl<E> Debug for ParseComplexError<E> where
    E: Debug
[src]

impl Debug for bf16[src]

impl Debug for f16[src]

impl Debug for BalancingBitonic[src]

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

impl Debug for CountingBitonic[src]

impl Debug for Zone[src]

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

impl Debug for ZoneMap[src]

impl Debug for TxnErrorType[src]

impl Debug for ColumnZoneData[src]

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

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

impl Debug for TransactionState[src]

impl<K, V, S> Debug for LOTable<K, V, S> where
    K: 'static + PartialEq<K> + Eq + Hash + Clone + Send + Sync + Debug,
    V: 'static + Clone + Send + Sync + Debug,
    S: BuildHasher
[src]

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

impl<'a, T, F> Debug for ExponentialGroupByKeyMut<'a, T, F> where
    T: 'a + Debug

impl<'a, T, P> Debug for ExponentialGroupByMut<'a, T, P> where
    T: 'a + Debug

impl<'a, T, F> Debug for LinearGroupByKeyMut<'a, T, F> where
    T: 'a + Debug

impl<'a, T, P> Debug for BinaryGroupByMut<'a, T, P> where
    T: 'a + Debug

impl<'a, T, P> Debug for LinearGroupByMut<'a, T, P> where
    T: 'a + Debug

impl<'a, T, F> Debug for BinaryGroupByKey<'a, T, F> where
    T: 'a + Debug

impl<'a, T, P> Debug for BinaryGroupBy<'a, T, P> where
    T: 'a + Debug

impl<'a, T, P> Debug for ExponentialGroupBy<'a, T, P> where
    T: 'a + Debug

impl<'a, T, F> Debug for ExponentialGroupByKey<'a, T, F> where
    T: 'a + Debug

impl<'a, T, P> Debug for LinearGroupBy<'a, T, P> where
    T: 'a + Debug

impl<'a, T, F> Debug for BinaryGroupByKeyMut<'a, T, F> where
    T: 'a + Debug

impl<'a, T, P> Debug for LinearGroupByKey<'a, T, P> where
    T: 'a + Debug

impl<T> Debug for Atomic<T>

impl Debug for Guard

impl<'g, T, P> Debug for CompareAndSetError<'g, T, P> where
    T: 'g,
    P: Pointer<T> + Debug

impl<T> Debug for Owned<T>

impl Debug for LocalHandle

impl<'g, T> Debug for Shared<'g, T>

impl Debug for Collector

impl<'a, T> Debug for ShardedLockReadGuard<'a, T> where
    T: Debug

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

impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env> where
    'env: 'scope, 

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

impl Debug for Unparker

impl Debug for Parker

impl Debug for WaitGroup

impl<'a, T> Debug for ShardedLockWriteGuard<'a, T> where
    T: Debug

impl Debug for Backoff

impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>

impl<T> Debug for ShardedLock<T> where
    T: Debug + ?Sized

impl<'env> Debug for Scope<'env>

impl Debug for Always[src]

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

impl Debug for WaitTimeoutResult

impl Debug for OnceState

impl Debug for Condvar

impl Debug for Once

impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLockUpgrade, 

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, T> Debug for RwLockWriteGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLock, 

impl<R, T> Debug for Mutex<R, T> where
    T: Debug + ?Sized,
    R: RawMutex, 

impl<'a, R, T> Debug for RwLockReadGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLock, 

impl<R, T> Debug for RwLock<R, T> where
    T: Debug + ?Sized,
    R: RawRwLock, 

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 MutexGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawMutex, 

impl<'a, R, T> Debug for MappedMutexGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawMutex, 

impl<'a, R, T> Debug for MappedRwLockWriteGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLock, 

impl<R, G, T> Debug for ReentrantMutex<R, G, T> where
    T: Debug + ?Sized,
    R: RawMutex,
    G: GetThreadId, 

impl<'a, R, T> Debug for MappedRwLockReadGuard<'a, R, T> where
    T: 'a + Debug + ?Sized,
    R: 'a + RawRwLock, 

impl Debug for ParkToken

impl Debug for UnparkResult

impl Debug for ParkResult

impl Debug for RequeueOp

impl Debug for UnparkToken

impl Debug for FilterOp

impl Debug for Filter[src]

impl Debug for Style[src]

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

impl Debug for Formatter[src]

impl Debug for Logger[src]

impl Debug for WriteStyle[src]

impl Debug for Color[src]

impl Debug for Timestamp[src]

impl Debug for Builder[src]

impl Debug for PreciseTimestamp[src]

impl Debug for Builder[src]

impl Debug for Target[src]

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

impl Debug for ParseColorError

impl Debug for Color

impl Debug for ColorSpec

impl Debug for ColorChoice

impl Debug for Color

impl Debug for Intense

impl Debug for Console

impl Debug for Handle

impl Debug for HandleRef

impl Debug for FormattedDuration

impl Debug for Error

impl Debug for Rfc3339Timestamp

impl Debug for Duration

impl Debug for Timestamp

impl Debug for Error

impl<X, E> Debug for Context<X, E> where
    E: Debug,
    X: Debug

impl Debug for Stream

impl<'r, 't> Debug for SplitN<'r, 't>

impl<'r, 't> Debug for Split<'r, 't>

impl Debug for RegexSetBuilder

impl<'t> Debug for Captures<'t>

impl<'a, R> Debug for ReplacerRef<'a, R> where
    R: 'a + Debug + ?Sized

impl Debug for SetMatchesIntoIter

impl<'r, 't> Debug for CaptureMatches<'r, 't>

impl<'r, 't> Debug for SplitN<'r, 't>

impl Debug for RegexSetBuilder

impl<'r, 't> Debug for Matches<'r, 't>

impl<'r, 't> Debug for Split<'r, 't>

impl<'r> Debug for CaptureNames<'r>

impl Debug for SetMatches

impl Debug for SetMatches

impl<'t> Debug for NoExpand<'t>

impl<'t> Debug for Match<'t>

impl<'r, 't> Debug for Matches<'r, 't>

impl<'t> Debug for Match<'t>

impl Debug for RegexBuilder

impl Debug for Regex

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

Shows the original regular expression.

impl<'a> Debug for SetMatchesIter<'a>

impl Debug for Error

impl<'t> Debug for NoExpand<'t>

impl Debug for Regex

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

Shows the original regular expression.

impl<'r> Debug for CaptureNames<'r>

impl Debug for SetMatchesIntoIter

impl<'c, 't> Debug for SubCaptureMatches<'c, 't> where
    't: 'c, 

impl Debug for RegexBuilder

impl<'a> Debug for SetMatchesIter<'a>

impl<'t> Debug for Captures<'t>

impl Debug for RegexSet

impl<'c, 't> Debug for SubCaptureMatches<'c, 't> where
    't: 'c, 

impl<'r, 't> Debug for CaptureMatches<'r, 't>

impl Debug for CaptureLocations

impl Debug for RegexSet

impl Debug for CaptureLocations

impl<'a, R> Debug for ReplacerRef<'a, R> where
    R: 'a + Debug + ?Sized

impl Debug for MatchKind

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

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

impl Debug for AhoCorasickBuilder

impl Debug for Config

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

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

impl Debug for Searcher

impl Debug for ErrorKind

impl Debug for MatchKind

impl Debug for Error

impl Debug for Match

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

impl Debug for Builder

impl Debug for Utf8Sequences

impl Debug for ClassSetBinaryOpKind

impl Debug for Parser

impl Debug for Flag

impl Debug for ClassSetRange

impl Debug for Concat

impl Debug for ClassSetItem

impl Debug for ClassUnicode

impl Debug for Repetition

impl Debug for ClassSetBinaryOp

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

impl Debug for WordBoundary

impl Debug for RepetitionRange

impl Debug for Printer

impl Debug for ClassBytesRange

impl Debug for CaseFoldError

impl Debug for Span

impl Debug for ClassUnicodeRange

impl Debug for HexLiteralKind

impl Debug for ErrorKind

impl Debug for GroupKind

impl Debug for Error

impl Debug for FlagsItem

impl Debug for Flags

impl Debug for SetFlags

impl Debug for GroupKind

impl Debug for Parser

impl Debug for Assertion

impl Debug for SpecialLiteralKind

impl Debug for Anchor

impl Debug for ClassBytes

impl Debug for Class

impl Debug for RepetitionKind

impl Debug for Literal

impl Debug for Position

impl Debug for Literal

impl Debug for ClassUnicodeOpKind

impl Debug for Comment

impl Debug for RepetitionOp

impl Debug for Literal

impl Debug for RepetitionKind

impl Debug for ClassAsciiKind

impl Debug for ClassUnicode

impl Debug for Alternation

impl Debug for Ast

impl Debug for Error

impl Debug for CaptureName

impl Debug for Group

impl Debug for Printer

impl Debug for Group

impl Debug for LiteralKind

impl Debug for ClassPerl

impl Debug for ClassSet

impl Debug for Repetition

impl Debug for Hir

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

impl Debug for ClassAscii

impl Debug for Literals

impl Debug for WithComments

impl Debug for RepetitionRange

impl Debug for Translator

impl Debug for Utf8Sequence

impl Debug for UnicodeWordError

impl Debug for AssertionKind

impl Debug for TranslatorBuilder

impl Debug for HirKind

impl Debug for Class

impl Debug for Utf8Range

impl Debug for ClassUnicodeKind

impl Debug for ParserBuilder

impl Debug for FlagsItemKind

impl Debug for ErrorKind

impl Debug for ClassPerlKind

impl Debug for ClassBracketed

impl Debug for Error

impl Debug for ParserBuilder

impl Debug for ClassSetUnion

impl<T> Debug for CachedThreadLocal<T> where
    T: Send + Debug

impl<'a, T> Debug for IterMut<'a, T> where
    T: Send + Debug

impl<'a, T> Debug for Iter<'a, T> where
    T: Send + Sync + Debug

impl<T> Debug for IntoIter<T> where
    T: Send + Debug

impl<T> Debug for ThreadLocal<T> where
    T: Send + Debug

impl<T, F> Debug for Lazy<T, F> where
    T: Debug

impl<T, F> Debug for Lazy<T, F> where
    T: Debug

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

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

impl<'_, T> Debug for LocalFutureObj<'_, T>

impl<'_, T> Debug for FutureObj<'_, T>

impl Debug for SpawnError

impl<'a> Debug for WakerRef<'a>

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

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

impl Debug for SendError

impl<T> Debug for TrySendError<T>

impl Debug for TryRecvError

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

impl Debug for Canceled

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

impl<'a, T> Debug for Cancellation<'a, T> where
    T: Debug

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

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

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

impl<'a, T> Debug for Drain<'a, T> where
    T: 'a, 
[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 Iter<'a, T> where
    T: 'a + Debug
[src]

Loading content...

Implementors

impl Debug for OrkhonError[src]

impl Debug for AxisOp[src]

impl Debug for Cost[src]

impl Debug for DatumType

impl Debug for InOut[src]

impl Debug for TDim

impl Debug for Validation[src]

impl Debug for ConcatSlice[src]

impl Debug for PadMode[src]

impl Debug for KernelFormat[src]

impl Debug for PaddingSpec[src]

impl Debug for DataFormat[src]

impl Debug for Reducer[src]

impl Debug for Alignment1.28.0[src]

impl Debug for SearchStep[src]

impl Debug for CollectionAllocErr[src]

impl Debug for BacktraceStatus[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::cmp::Ordering[src]

impl Debug for TryReserveError[src]

impl Debug for Infallible1.34.0[src]

impl Debug for VarError[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::ErrorKind[src]

impl Debug for SeekFrom[src]

impl Debug for IpAddr1.7.0[src]

impl Debug for Ipv6MulticastScope[src]

impl Debug for Shutdown[src]

impl Debug for SocketAddr[src]

impl Debug for FpCategory[src]

impl Debug for IntErrorKind[src]

impl Debug for c_void1.16.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::atomic::Ordering[src]

impl Debug for RecvTimeoutError1.12.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::mpsc::TryRecvError[src]

impl Debug for FusedSpec

impl Debug for LinearSpec

impl Debug for MatrixStoreSpec

impl Debug for PanelStore

impl Debug for orkhon::prelude::ops::nn::tract_ndarray::ErrorKind[src]

impl Debug for SliceOrIndex[src]

impl Debug for FloatErrorKind[src]

impl Debug for QParamsInputKind[src]

impl Debug for InputMapping[src]

impl Debug for StateInitializer[src]

impl Debug for AxisChange[src]

impl Debug for AxisChangeConsequence[src]

impl Debug for AxisInfo[src]

impl Debug for AxisTracking[src]

impl Debug for Blob

impl Debug for InletId[src]

impl Debug for Invariants[src]

impl Debug for OutletId[src]

impl Debug for SessionState[src]

impl Debug for ShapeFact[src]

impl Debug for Symbol

impl Debug for SymbolValues

impl Debug for Tensor

impl Debug for TypedFact[src]

impl Debug for orkhon::prelude::internal::f16

impl Debug for ConstantOfShape[src]

impl Debug for FiniteReshape[src]

impl Debug for Gather[src]

impl Debug for MultiBroadcastTo[src]

impl Debug for OneHot[src]

impl Debug for Pad[src]

impl Debug for orkhon::prelude::ops::array::Slice[src]

impl Debug for Tile[src]

impl Debug for TypedConcat[src]

impl Debug for MergeOpUnicast[src]

impl Debug for TypedBinOp[src]

impl Debug for UnaryOp[src]

impl Debug for Cast[src]

impl Debug for Im2Col[src]

impl Debug for ConvUnary[src]

impl Debug for MaxPool[src]

impl Debug for Patch[src]

impl Debug for PatchAxis[src]

impl Debug for PatchSpec[src]

impl Debug for PoolSpec[src]

impl Debug for SumPool[src]

impl Debug for Dummy[src]

impl Debug for ElementWiseOp[src]

impl Debug for Identity[src]

impl Debug for Const[src]

impl Debug for And[src]

impl Debug for Equals[src]

impl Debug for Greater[src]

impl Debug for GreaterEqual[src]

impl Debug for Iff[src]

impl Debug for Lesser[src]

impl Debug for LesserEqual[src]

impl Debug for Not[src]

impl Debug for NotEquals[src]

impl Debug for Or[src]

impl Debug for Xor[src]

impl Debug for Abs[src]

impl Debug for Acos[src]

impl Debug for Acosh[src]

impl Debug for Add[src]

impl Debug for Asin[src]

impl Debug for Asinh[src]

impl Debug for Atan[src]

impl Debug for Atanh[src]

impl Debug for Ceil[src]

impl Debug for Cos[src]

impl Debug for Cosh[src]

impl Debug for Div[src]

impl Debug for Exp[src]

impl Debug for FlippedPow[src]

impl Debug for FlippedShiftLeft[src]

impl Debug for FlippedShiftRight[src]

impl Debug for Floor[src]

impl Debug for Ln[src]

impl Debug for Max[src]

impl Debug for Min[src]

impl Debug for Mul[src]

impl Debug for Neg[src]

impl Debug for Pow[src]

impl Debug for Recip[src]

impl Debug for Rem[src]

impl Debug for Round[src]

impl Debug for RoundHalfToEven[src]

impl Debug for Rsqrt[src]

impl Debug for ShiftLeft[src]

impl Debug for ShiftRight[src]

impl Debug for Sign[src]

impl Debug for Sin[src]

impl Debug for Sinh[src]

impl Debug for Sqrt[src]

impl Debug for Square[src]

impl Debug for Sub[src]

impl Debug for Tan[src]

impl Debug for Tanh[src]

impl Debug for LirMatMulUnary[src]

impl Debug for MatMatMulPack[src]

impl Debug for MatMul[src]

impl Debug for MatMulUnary[src]

impl Debug for Reduce[src]

impl Debug for Sigmoid[src]

impl Debug for orkhon::prelude::ops::nn::tract_data::anyhow::Error[src]

impl Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::fmt::Error[src]

impl Debug for ParseBoolError[src]

impl Debug for Utf8Error[src]

impl Debug for FromUtf8Error[src]

impl Debug for FromUtf16Error[src]

impl Debug for AllocError[src]

impl Debug for Global[src]

impl Debug for Layout1.28.0[src]

impl Debug for LayoutError1.49.0[src]

impl Debug for System1.28.0[src]

impl Debug for TypeId[src]

impl Debug for CpuidResult1.27.0[src]

impl Debug for __m1281.27.0[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 __m256d1.27.0[src]

impl Debug for __m256i1.27.0[src]

impl Debug for __m512[src]

impl Debug for __m512d[src]

impl Debug for __m512i[src]

impl Debug for TryFromSliceError1.34.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::ascii::EscapeDefault1.16.0[src]

impl Debug for Backtrace[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 orkhon::prelude::ops::nn::tract_downcast_rs::__std::char::EscapeDebug1.20.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::char::EscapeDefault[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::char::EscapeUnicode[src]

impl Debug for ParseCharError1.20.0[src]

impl Debug for ToLowercase[src]

impl Debug for ToUppercase[src]

impl Debug for DefaultHasher1.13.0[src]

impl Debug for RandomState1.16.0[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 CStr1.3.0[src]

impl Debug for CString[src]

impl Debug for FromBytesWithNulError1.10.0[src]

impl Debug for FromVecWithNulError[src]

impl Debug for IntoStringError1.7.0[src]

impl Debug for NulError[src]

impl Debug for OsStr[src]

impl Debug for OsString[src]

impl Debug for DirBuilder1.6.0[src]

impl Debug for DirEntry1.13.0[src]

impl Debug for File[src]

impl Debug for FileType1.1.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::fs::Metadata1.16.0[src]

impl Debug for OpenOptions[src]

impl Debug for Permissions[src]

impl Debug for ReadDir[src]

impl Debug for SipHasher[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::Empty1.16.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::Error[src]

impl Debug for Initializer[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::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 PhantomPinned1.33.0[src]

impl Debug for AddrParseError[src]

impl Debug for Ipv4Addr[src]

impl Debug for Ipv6Addr[src]

impl Debug for SocketAddrV4[src]

impl Debug for SocketAddrV6[src]

impl Debug for TcpListener[src]

impl Debug for TcpStream[src]

impl Debug for UdpSocket[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 NonZeroUsize1.28.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::num::ParseFloatError[src]

impl Debug for ParseIntError[src]

impl Debug for TryFromIntError1.34.0[src]

impl Debug for RangeFull[src]

impl Debug for NoneError[src]

impl Debug for Path[src]

impl Debug for PathBuf[src]

impl Debug for StripPrefixError1.7.0[src]

impl Debug for String[src]

impl Debug for Child1.16.0[src]

impl Debug for ChildStderr1.16.0[src]

impl Debug for ChildStdin1.16.0[src]

impl Debug for ChildStdout1.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 ExitCode[src]

impl Debug for ExitStatus[src]

impl Debug for Output1.7.0[src]

impl Debug for Stdio1.16.0[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 RecvError[src]

impl Debug for Barrier1.16.0[src]

impl Debug for BarrierWaitResult1.16.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::Condvar1.16.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::Once1.16.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::OnceState[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::WaitTimeoutResult1.5.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 AccessError1.26.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::thread::Builder[src]

impl Debug for Thread[src]

impl Debug for ThreadId1.19.0[src]

impl Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::time::Duration1.27.0[src]

impl Debug for Instant1.8.0[src]

impl Debug for SystemTime1.8.0[src]

impl Debug for SystemTimeError1.8.0[src]

impl Debug for Packer

impl Debug for Axis[src]

impl Debug for AxisDescription[src]

impl Debug for IxDynImpl[src]

impl Debug for ShapeError[src]

impl Debug for orkhon::prelude::ops::nn::tract_ndarray::Slice[src]

impl Debug for orkhon::prelude::ops::nn::tract_num_traits::ParseFloatError[src]

impl Debug for IntoTranslator[src]

impl Debug for DequantizeLinearF32[src]

impl Debug for LookupTable[src]

impl Debug for QParams[src]

impl Debug for QuantizeLinearI8[src]

impl Debug for QuantizeLinearU8[src]

impl Debug for LirScan[src]

impl Debug for orkhon::prelude::ops::scan::Scan[src]

impl Debug for SourceState[src]

impl Debug for TypedSource[src]

impl Debug for Downsample[src]

impl Debug for UnimplementedOp[src]

impl Debug for ChangeAxes[src]

impl Debug for TFRequest[src]

impl Debug for TFResponse[src]

impl Debug for dyn Any + 'static[src]

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

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

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

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

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

impl<'_> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::string::Drain<'_>1.17.0[src]

impl<'_> Debug for SplitPaths<'_>1.16.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 Components<'_>1.13.0[src]

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

impl<'_> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::path::Iter<'_>1.13.0[src]

impl<'_> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::task::Context<'_>1.36.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> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_set::Drain<'_, K> where
    K: Debug
1.16.0[src]

impl<'_, K> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_set::Iter<'_, K> where
    K: Debug
1.16.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Entry<'_, K, V> where
    K: Ord + Debug,
    V: Debug
1.12.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::Entry<'_, K, V> where
    K: Debug,
    V: Debug
1.12.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Iter<'_, K, V> where
    K: Debug,
    V: Debug
1.17.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Keys<'_, K, V> where
    K: Debug
1.17.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::OccupiedEntry<'_, K, V> where
    K: Ord + Debug,
    V: Debug
1.12.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::VacantEntry<'_, K, V> where
    K: Ord + Debug
1.12.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Values<'_, K, V> where
    V: Debug
1.17.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::ValuesMut<'_, K, V> where
    V: Debug
1.10.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::Drain<'_, K, V> where
    K: Debug,
    V: Debug
1.16.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::Iter<'_, K, V> where
    K: Debug,
    V: Debug
1.16.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::IterMut<'_, K, V> where
    K: Debug,
    V: Debug
1.16.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::Keys<'_, K, V> where
    K: Debug
1.16.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::OccupiedEntry<'_, K, V> where
    K: Debug,
    V: Debug
1.12.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::VacantEntry<'_, K, V> where
    K: Debug
1.12.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::Values<'_, K, V> where
    V: Debug
1.16.0[src]

impl<'_, K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::ValuesMut<'_, K, V> where
    V: Debug
1.16.0[src]

impl<'_, K, V, F> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::binary_heap::Iter<'_, T> where
    T: Debug
1.17.0[src]

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

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::Difference<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::Intersection<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::Iter<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::SymmetricDifference<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::Union<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::linked_list::Cursor<'_, T> where
    T: Debug
[src]

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

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::linked_list::Iter<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::linked_list::IterMut<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::vec_deque::Drain<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::vec_deque::Iter<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::vec_deque::IterMut<'_, T> where
    T: Debug
1.17.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::slice::Iter<'_, T> where
    T: Debug
1.9.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::slice::IterMut<'_, T> where
    T: Debug
1.9.0[src]

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

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

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::MutexGuard<'_, T> where
    T: Debug + ?Sized
1.16.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::RwLockReadGuard<'_, T> where
    T: Debug
1.16.0[src]

impl<'_, T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::RwLockWriteGuard<'_, T> where
    T: Debug
1.16.0[src]

impl<'_, T, A> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::vec::Drain<'_, T, A> where
    T: Debug,
    A: Allocator
1.17.0[src]

impl<'_, T, F> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::DrainFilter<'_, T, F> where
    T: Debug,
    F: FnMut(&T) -> bool
[src]

impl<'_, T, F> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::linked_list::DrainFilter<'_, T, F> where
    T: Debug,
    F: FnMut(&mut T) -> bool
[src]

impl<'_, T, P> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::slice::Split<'_, T, P> where
    T: Debug,
    P: FnMut(&T) -> bool
1.9.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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::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<'_, T, S> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_set::Difference<'_, T, S> where
    T: Debug + Eq + Hash,
    S: BuildHasher
1.16.0[src]

impl<'_, T, S> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_set::Intersection<'_, T, S> where
    T: Debug + Eq + Hash,
    S: BuildHasher
1.16.0[src]

impl<'_, T, S> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_set::SymmetricDifference<'_, T, S> where
    T: Debug + Eq + Hash,
    S: BuildHasher
1.16.0[src]

impl<'_, T, S> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_set::Union<'_, T, S> where
    T: Debug + Eq + Hash,
    S: BuildHasher
1.16.0[src]

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

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

impl<'a> Debug for TensorView<'a>

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

impl<'a> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::str::Bytes<'a>[src]

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

impl<'a> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeDebug<'a>1.34.0[src]

impl<'a> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeDefault<'a>1.34.0[src]

impl<'a> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeUnicode<'a>1.34.0[src]

impl<'a> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::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 orkhon::prelude::ops::nn::tract_downcast_rs::__std::error::Chain<'a>[src]

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

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

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

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

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

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

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

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

impl<'a> Debug for CommandEnvs<'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 orkhon::prelude::ops::nn::tract_downcast_rs::__std::option::Iter<'a, A> where
    A: 'a + Debug
[src]

impl<'a, A> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::option::IterMut<'a, A> where
    A: 'a + Debug
[src]

impl<'a, A, D> Debug for AxisIter<'a, A, D> where
    A: Debug,
    D: Debug
[src]

impl<'a, A, S, D> Debug for ArrayBase<S, D> where
    S: Data<Elem = A>,
    A: Debug,
    D: Dimension
[src]

Format the array using Debug and apply the formatting parameters used to each element.

The array is shown in multiline style.

impl<'a, D> Debug for Axes<'a, D> where
    D: Debug
[src]

impl<'a, I> Debug for orkhon::prelude::ops::nn::tract_itertools::Format<'a, I> where
    I: Iterator,
    <I as Iterator>::Item: Debug
[src]

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

impl<'a, I, E> Debug for orkhon::prelude::ops::nn::tract_itertools::ProcessResults<'a, I, E> where
    I: Debug,
    E: 'a + Debug
[src]

impl<'a, I, F> Debug for orkhon::prelude::ops::nn::tract_itertools::TakeWhileRef<'a, I, F> where
    I: Iterator + Debug
[src]

impl<'a, K, F> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_set::DrainFilter<'a, K, F> where
    F: FnMut(&K) -> bool
[src]

impl<'a, K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IterMut<'a, K, V> where
    K: 'a + Debug,
    V: 'a + Debug
[src]

impl<'a, K, V, F> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::str::RSplit<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, P> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::str::Split<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, P> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::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, T> Debug for MatrixStore<'a, T> where
    T: Copy + Debug

impl<'a, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::binary_heap::Drain<'a, T> where
    T: 'a + Debug
1.6.0[src]

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

impl<'a, T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::Range<'a, T> where
    T: 'a + Debug
1.17.0[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 orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::Drain<'a, T> where
    T: 'a + Array,
    <T as Array>::Item: Debug
[src]

impl<'a, T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::result::Iter<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::result::IterMut<'a, T> where
    T: 'a + Debug
[src]

impl<'a, T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::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, F, A> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::vec::DrainFilter<'a, T, F, A> where
    T: Debug,
    A: Debug + Allocator,
    F: Debug + FnMut(&mut T) -> bool
[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, TI> Debug for MatMatMulKerSpec<'a, TI> where
    TI: Debug + Copy

impl<'f> Debug for VaListImpl<'f>[src]

impl<'p, T> Debug for KInWriter<'p, T> where
    T: Debug + Copy

impl<'p, T> Debug for KOutWriter<'p, T> where
    T: Debug + Copy

impl<A> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::IntoIter<A> where
    A: Array,
    <A as Array>::Item: Debug
[src]

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

impl<A> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::option::IntoIter<A> where
    A: Debug
[src]

impl<A> Debug for orkhon::prelude::ops::nn::tract_itertools::__std_iter::Repeat<A> where
    A: Debug
[src]

impl<A> Debug for orkhon::prelude::ops::nn::tract_itertools::RepeatN<A> where
    A: Debug
[src]

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

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

impl<A, B> Debug for orkhon::prelude::ops::nn::tract_itertools::EitherOrBoth<A, B> where
    A: Debug,
    B: Debug
[src]

impl<A, B> Debug for orkhon::prelude::ops::nn::tract_itertools::__std_iter::Chain<A, B> where
    A: Debug,
    B: Debug
[src]

impl<A, B> Debug for orkhon::prelude::ops::nn::tract_itertools::__std_iter::Zip<A, B> where
    A: Debug,
    B: Debug
[src]

impl<B> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::Lines<B> where
    B: Debug
[src]

impl<B> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::Split<B> where
    B: Debug
[src]

impl<B, C> Debug for ControlFlow<B, C> where
    C: Debug,
    B: Debug
[src]

impl<D> Debug for Indices<D> where
    D: Debug + Dimension
[src]

impl<D> Debug for Shape<D> where
    D: Debug
[src]

impl<D> Debug for StrideShape<D> where
    D: Debug
[src]

impl<D, S> Debug for BaseDataShape<D, S> where
    S: Debug + AsRef<[D]>,
    D: Debug + DimLike
[src]

impl<F> Debug for Outlet<F> where
    F: Fact + Hash
[src]

impl<F> Debug for PollFn<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<F> Debug for orkhon::prelude::ops::nn::tract_itertools::RepeatCall<F>[src]

impl<F> Debug for OutputMapping<F> where
    F: Clone + Display
[src]

impl<F, O> Debug for Graph<F, O> where
    F: Debug + Fact + Hash + Clone + 'static,
    O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static + Hash
[src]

impl<F, O> Debug for ModelPatch<F, O> where
    F: Debug + Fact + Clone + 'static + Hash,
    O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static + Hash
[src]

impl<F, O> Debug for Node<F, O> where
    F: Fact + Debug + Hash,
    O: Debug + Hash
[src]

impl<F, O, M> Debug for SimplePlan<F, O, M> where
    F: Debug + Fact + Hash + Clone + 'static,
    O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static + Hash,
    M: Debug + Borrow<Graph<F, O>> + Hash
[src]

impl<F, O, M, P> Debug for SimpleState<F, O, M, P> where
    P: Debug + Borrow<SimplePlan<F, O, M>>,
    F: Debug + Fact + Hash + Clone + 'static,
    O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static + Hash,
    M: Debug + Borrow<Graph<F, O>> + Hash
[src]

impl<H> Debug for BuildHasherDefault<H>1.9.0[src]

impl<I> Debug for DecodeUtf16<I> where
    I: Debug + Iterator<Item = u16>, 
1.9.0[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 orkhon::prelude::ops::nn::tract_itertools::__std_iter::Intersperse<I> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Clone,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for Peekable<I> where
    I: Iterator + Debug,
    <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 orkhon::prelude::ops::nn::tract_itertools::__std_iter::Take<I> where
    I: Debug
[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 orkhon::prelude::ops::nn::tract_itertools::ExactlyOneError<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for orkhon::prelude::ops::nn::tract_itertools::Intersperse<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for MultiPeek<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 orkhon::prelude::ops::nn::tract_itertools::PutBack<I> where
    I: Debug + Iterator,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for PutBackN<I> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I> Debug for RcIter<I> where
    I: Debug
[src]

impl<I> Debug for orkhon::prelude::ops::nn::tract_itertools::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 orkhon::prelude::ops::nn::tract_itertools::WhileSome<I> where
    I: Debug
[src]

impl<I> Debug for Dim<I> where
    I: 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 Map<I, F> where
    I: Debug
1.9.0[src]

impl<I, F> Debug for orkhon::prelude::ops::nn::tract_itertools::Batching<I, F> where
    I: Debug
[src]

impl<I, F> Debug for orkhon::prelude::ops::nn::tract_itertools::Coalesce<I, F> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, F> Debug for KMergeBy<I, F> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, G> Debug for IntersperseWith<I, G> where
    I: Iterator + Debug,
    G: Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, J> Debug for orkhon::prelude::ops::nn::tract_itertools::ConsTuples<I, J> where
    I: Debug + Iterator<Item = J>,
    J: Debug
[src]

impl<I, J> Debug for orkhon::prelude::ops::nn::tract_itertools::Interleave<I, J> where
    I: Debug,
    J: Debug
[src]

impl<I, J> Debug for orkhon::prelude::ops::nn::tract_itertools::InterleaveShortest<I, J> where
    I: Debug + Iterator,
    J: Debug + Iterator<Item = <I as Iterator>::Item>, 
[src]

impl<I, J> Debug for orkhon::prelude::ops::nn::tract_itertools::Product<I, J> where
    I: Debug + Iterator,
    J: Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, J> Debug for orkhon::prelude::ops::nn::tract_itertools::ZipEq<I, J> where
    I: Debug,
    J: Debug
[src]

impl<I, J, F> Debug for orkhon::prelude::ops::nn::tract_itertools::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 orkhon::prelude::ops::nn::tract_itertools::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 orkhon::prelude::ops::nn::tract_itertools::__std_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, Pred> Debug for orkhon::prelude::ops::nn::tract_itertools::DedupBy<I, Pred> where
    I: Iterator + Debug,
    <I as Iterator>::Item: Debug
[src]

impl<I, St, F> Debug for orkhon::prelude::ops::nn::tract_itertools::__std_iter::Scan<I, St, F> where
    I: Debug,
    St: Debug
1.9.0[src]

impl<I, T> Debug for orkhon::prelude::ops::nn::tract_itertools::TupleCombinations<I, T> where
    I: Debug + Iterator,
    T: Debug + HasCombination<I>,
    <T as HasCombination<I>>::Combination: Debug
[src]

impl<I, T> Debug for orkhon::prelude::ops::nn::tract_itertools::TupleWindows<I, T> where
    I: Debug + Iterator<Item = <T as TupleCollect>::Item>,
    T: Debug + HomogeneousTuple
[src]

impl<I, U> Debug for Flatten<I> where
    I: Debug + Iterator,
    U: 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
    I: Debug,
    U: IntoIterator,
    <U as IntoIterator>::IntoIter: Debug
1.9.0[src]

impl<I, V, F> Debug for UniqueBy<I, V, F> where
    I: Iterator + Debug,
    V: Debug + Hash + Eq
[src]

impl<Idx> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::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> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_set::IntoIter<K> where
    K: Debug
1.16.0[src]

impl<K> Debug for LutImpl<K> where
    K: Debug + LutKer

impl<K, T> Debug for SigmoidImpl<K, T> where
    T: Debug + Copy + PartialEq<T> + Send + Sync + SigmoidFunc,
    K: Debug + SigmoidKer<T> + Clone

impl<K, T> Debug for TanhImpl<K, T> where
    T: Debug + Copy + PartialEq<T> + Send + Sync + TanhFunc,
    K: Debug + TanhKer<T> + Clone

impl<K, TA, TB, TC, TI> Debug for MatMatMulImpl<K, TA, TB, TC, TI> where
    K: Debug + MatMatMulKer<TI> + 'static,
    TI: Debug + Copy + Add<TI> + Mul<TI> + Zero + 'static,
    TA: Debug + Copy + Zero + 'static,
    TB: Debug + Copy + Zero + 'static,
    TC: Debug + Copy + 'static, 

impl<K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IntoIter<K, V> where
    K: Debug,
    V: Debug
1.17.0[src]

impl<K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IntoKeys<K, V> where
    K: Debug
[src]

impl<K, V> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IntoValues<K, V> where
    V: Debug
[src]

impl<K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::IntoIter<K, V> where
    K: Debug,
    V: Debug
1.16.0[src]

impl<K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::IntoKeys<K, V> where
    K: Debug
[src]

impl<K, V> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::collections::hash_map::IntoValues<K, V> where
    V: Debug
[src]

impl<K, V> Debug for BTreeMap<K, V> where
    K: Debug,
    V: Debug
[src]

impl<K, V, S> Debug for HashMap<K, V, S> where
    K: Debug,
    V: Debug
[src]

impl<L, R> Debug for Either<L, R> where
    R: Debug,
    L: Debug
[src]

impl<P> Debug for Pin<P> where
    P: Debug
1.33.0[src]

impl<Parts, D> Debug for orkhon::prelude::ops::nn::tract_ndarray::Zip<Parts, D> where
    D: Debug,
    Parts: Debug
[src]

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

impl<R> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::Bytes<R> where
    R: Debug
[src]

impl<St, F> Debug for orkhon::prelude::ops::nn::tract_itertools::Iterate<St, F> where
    St: Debug
[src]

impl<St, F> Debug for orkhon::prelude::ops::nn::tract_itertools::Unfold<St, F> where
    St: 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 TryLockError<T>[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::mpsc::TrySendError<T>[src]

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

impl<T> Debug for orkhon::prelude::ops::nn::tract_itertools::FoldWhile<T> where
    T: Debug
[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_itertools::MinMaxResult<T> where
    T: Debug
[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_itertools::Position<T> where
    T: Debug
[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_ndarray::FoldWhile<T> where
    T: Debug
[src]

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

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

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

impl<T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::binary_heap::IntoIter<T> where
    T: Debug
1.17.0[src]

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

impl<T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::IntoIter<T> where
    T: Debug
[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::linked_list::IntoIter<T> where
    T: Debug
1.17.0[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::vec_deque::IntoIter<T> where
    T: Debug
1.17.0[src]

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

impl<T> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::rc::Weak<T> where
    T: Debug + ?Sized
1.4.0[src]

impl<T> Debug for Cell<T> where
    T: Copy + Debug
[src]

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

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

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

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

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

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

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

impl<T> Debug for Pending<T>1.48.0[src]

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

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::Cursor<T> where
    T: Debug
[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::Take<T> where
    T: Debug
[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::lazy::OnceCell<T> where
    T: Debug
[src]

impl<T> Debug for SyncOnceCell<T> where
    T: Debug
[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 Wrapping<T> where
    T: Debug
[src]

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

impl<T> Debug for NonNull<T> where
    T: ?Sized
1.25.0[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::result::IntoIter<T> where
    T: Debug
[src]

impl<T> Debug for AtomicPtr<T>1.3.0[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::mpsc::IntoIter<T> where
    T: Debug
1.1.0[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::mpsc::Receiver<T>1.8.0[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::mpsc::SendError<T>[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::mpsc::Sender<T>1.8.0[src]

impl<T> Debug for SyncSender<T>1.8.0[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::Mutex<T> where
    T: Debug + ?Sized
[src]

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

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::RwLock<T> where
    T: Debug + ?Sized
[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::sync::Weak<T> where
    T: Debug + ?Sized
1.4.0[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 Key<T>[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_itertools::__std_iter::Empty<T>1.9.0[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_itertools::__std_iter::Once<T> where
    T: Debug
1.2.0[src]

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

impl<T> Debug for orkhon::prelude::ops::nn::tract_itertools::TupleBuffer<T> where
    T: Debug + HomogeneousTuple,
    <T as TupleCollect>::Buffer: Debug
[src]

impl<T> Debug for orkhon::prelude::ops::nn::tract_itertools::Zip<T> where
    T: Debug
[src]

impl<T> Debug for MaybeUninit<T>1.41.0[src]

impl<T, A> Debug for orkhon::prelude::ops::nn::tract_data::internal::tract_smallvec::alloc::vec::IntoIter<T, A> where
    T: Debug,
    A: Allocator
1.13.0[src]

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

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

impl<T, D> Debug for SliceInfo<T, D> where
    T: Debug + ?Sized,
    D: Dimension + Debug
[src]

impl<T, E> Debug for Result<T, E> where
    T: Debug,
    E: Debug
[src]

impl<T, F> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::lazy::Lazy<T, F> where
    T: Debug
[src]

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

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

impl<T, S> Debug for HashSet<T, S> where
    T: Debug
[src]

impl<T, U> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::io::Chain<T, U> where
    T: Debug,
    U: Debug
1.16.0[src]

impl<T, U> Debug for orkhon::prelude::ops::nn::tract_itertools::ZipLongest<T, U> where
    T: Debug,
    U: Debug
[src]

impl<T, const N: usize> Debug for orkhon::prelude::ops::nn::tract_downcast_rs::__std::array::IntoIter<T, N> where
    T: Debug
1.40.0[src]

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

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

impl<TI> Debug for FusedKerSpec<TI> where
    TI: Copy + Debug

impl<W> Debug for BufWriter<W> where
    W: Write + Debug
[src]

impl<W> Debug for IntoInnerError<W> where
    W: Debug
[src]

impl<W> Debug for LineWriter<W> where
    W: Write + Debug
[src]

impl<Y, R> Debug for GeneratorState<Y, R> where
    R: Debug,
    Y: Debug
[src]

Loading content...