1.0.0[][src]Trait twilio_async::fmt::Debug

#[lang = "debug_trait"]
pub trait Debug { 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 ).

Examples

Deriving an implementation:

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

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

println!("The origin is: {:?}", origin);

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 {
        write!(f, "Point {{ x: {}, y: {} }}", self.x, self.y)
    }
}

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

println!("The origin is: {:?}", origin);

This outputs:

The origin is: Point { x: 0, y: 0 }

There are a number of debug_* methods on Formatter 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 };

println!("The origin is: {:#?}", origin);

This outputs:

The origin is: Point {
    x: 0,
    y: 0
}

Required methods

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

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 {
        write!(f, "({:?}, {:?})", self.longitude, self.latitude)
    }
}

assert_eq!("(1.987, 2.983)".to_owned(),
           format!("{:?}", Position { longitude: 1.987, latitude: 2.983, }));
Loading content...

Implementations on Foreign Types

impl Debug for Args[src]

impl Debug for Shutdown[src]

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

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

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

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

impl<'a, K, V> Debug for Keys<'a, K, V> where
    K: Debug
[src]

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

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

impl Debug for NulError[src]

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

impl Debug for Stdio[src]

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

impl Debug for ChildStderr[src]

impl Debug for DefaultHasher[src]

impl Debug for AccessError[src]

impl Debug for ThreadId[src]

impl Debug for ExitCode[src]

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

impl Debug for OsString[src]

impl Debug for VarError[src]

impl Debug for Barrier[src]

impl Debug for OsStr[src]

impl Debug for VarsOs[src]

impl Debug for DirBuilder[src]

impl Debug for SocketAddr[src]

impl Debug for OpenOptions[src]

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

impl Debug for TcpStream[src]

impl Debug for ExitStatus[src]

impl Debug for Command[src]

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<T> Debug for TryLockError<T>[src]

impl Debug for CString[src]

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

impl<T> Debug for LocalKey<T> where
    T: 'static, 
[src]

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

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

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

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

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

impl Debug for SystemTimeError[src]

impl Debug for Instant[src]

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

impl Debug for Path[src]

impl Debug for Once[src]

impl Debug for UdpSocket[src]

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

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

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

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

impl Debug for System[src]

impl Debug for BarrierWaitResult[src]

impl<'rx, T> Debug for Handle<'rx, T> where
    T: 'rx + Send
[src]

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

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

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

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

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

impl Debug for SystemTime[src]

impl Debug for FileType[src]

impl Debug for RecvTimeoutError[src]

impl Debug for TryRecvError[src]

impl Debug for Permissions[src]

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

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

impl Debug for Metadata[src]

impl Debug for ArgsOs[src]

impl Debug for Select[src]

impl Debug for DirEntry[src]

impl Debug for RandomState[src]

impl Debug for Ipv6MulticastScope[src]

impl Debug for ChildStdin[src]

impl Debug for WaitTimeoutResult[src]

impl Debug for Builder[src]

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

impl Debug for Child[src]

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

impl Debug for RecvError[src]

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

impl Debug for TcpListener[src]

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

impl Debug for CStr[src]

impl Debug for ChildStdout[src]

impl Debug for SocketAddrV6[src]

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

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

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

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

impl<'a, K, V> Debug for ValuesMut<'a, K, V> where
    K: Debug,
    V: Debug
[src]

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

impl Debug for IntoStringError[src]

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

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

impl<K, V, S> Debug for HashMap<K, V, S> where
    K: Eq + Hash + Debug,
    S: BuildHasher,
    V: Debug
[src]

impl Debug for Condvar[src]

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

impl Debug for StripPrefixError[src]

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

impl Debug for AddrParseError[src]

impl Debug for Thread[src]

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

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

impl Debug for ReadDir[src]

impl Debug for OnceState[src]

impl Debug for File[src]

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

impl Debug for FromBytesWithNulError[src]

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

impl Debug for SocketAddrV4[src]

impl Debug for IpAddr[src]

impl Debug for Output[src]

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

impl Debug for Ipv4Addr[src]

impl Debug for Vars[src]

impl Debug for PathBuf[src]

impl<'a, K, V> Debug for Values<'a, K, V> where
    V: Debug
[src]

impl Debug for JoinPathsError[src]

impl Debug for Ipv6Addr[src]

impl Debug for bool[src]

impl<Idx> Debug for RangeToInclusive<Idx> where
    Idx: Debug
[src]

impl<I, P> Debug for Filter<I, P> where
    I: Debug
[src]

impl<Idx> Debug for Range<Idx> where
    Idx: Debug
[src]

impl<T6, T7, T8, T9, T10, T11> Debug for (T6, T7, T8, T9, T10, T11) where
    T10: Debug,
    T11: Debug + ?Sized,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug
[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 ParseFloatError[src]

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

impl Debug for __m128i[src]

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

impl Debug for IntErrorKind[src]

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

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

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

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

impl<'a, P> Debug for SplitN<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl Debug for ()[src]

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

impl<'a, P> Debug for RSplitTerminator<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a> Debug for LinesAny<'a>[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 Debug for LayoutErr[src]

impl<Idx> Debug for RangeInclusive<Idx> where
    Idx: Debug
[src]

impl Debug for CharTryFromError[src]

impl<'a, P> Debug for Split<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[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,
    T10: Debug,
    T11: Debug + ?Sized,
    T2: Debug,
    T3: Debug,
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug
[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> Debug for fn(A, B, C, D, E) -> Ret[src]

impl Debug for NonZeroU32[src]

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

impl Debug for i64[src]

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

impl Debug for PhantomPinned[src]

impl Debug for EscapeDebug[src]

impl<'a, P> Debug for Matches<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

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

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

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

impl Debug for str[src]

impl Debug for NonZeroU16[src]

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

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

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

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

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

impl<'a, P> Debug for RSplitN<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

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

impl Debug for __m256[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 Debug for i32[src]

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

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

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

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

impl Debug for Layout[src]

impl Debug for NonZeroI32[src]

impl<I, P> Debug for SkipWhile<I, P> where
    I: Debug
[src]

impl Debug for u64[src]

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

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

impl<'a> Debug for Utf8LossyChunk<'a>[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 AtomicBool[src]

impl Debug for AtomicIsize[src]

impl<I, U, F> Debug for FlatMap<I, U, F> where
    I: Debug,
    U: IntoIterator,
    <U as IntoIterator>::IntoIter: Debug
[src]

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

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

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

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

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

impl<T> Debug for [T; 22] 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<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,
    T10: Debug,
    T11: Debug + ?Sized,
    T2: Debug,
    T3: Debug,
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug
[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> Debug for unsafe fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

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

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

impl Debug for ToUppercase[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 Ordering[src]

impl Debug for isize[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 Debug for Utf8Error[src]

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

impl Debug for NonZeroU64[src]

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

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

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

impl Debug for ParseCharError[src]

impl Debug for ![src]

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

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

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

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

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

impl Debug for char[src]

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

impl<T> Debug for [T; 0] where
    T: Debug
[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> Debug for &'_ mut T where
    T: Debug + ?Sized
[src]

impl Debug for __m128d[src]

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

impl Debug for __m64[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 Debug for i128[src]

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

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

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

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

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

impl Debug for NonZeroU8[src]

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

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

impl Debug for LocalWaker[src]

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

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

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

impl<Idx> Debug for RangeTo<Idx> where
    Idx: Debug
[src]

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

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

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

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

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

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

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

impl Debug for Waker[src]

impl Debug for NonZeroUsize[src]

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

impl Debug for u16[src]

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

impl Debug for __m512i[src]

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

impl<F> Debug for RepeatWith<F> where
    F: Debug
[src]

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

impl Debug for RangeFull[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<T, E> Debug for Result<T, E> where
    E: Debug,
    T: Debug
[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 Debug for u8[src]

impl Debug for Utf8Lossy[src]

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

impl Debug for AtomicU8[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; 23] where
    T: Debug
[src]

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

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

impl Debug for DecodeUtf16Error[src]

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

impl Debug for EscapeUnicode[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
    T10: Debug,
    T11: Debug + ?Sized,
    T2: Debug,
    T3: Debug,
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug
[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 Duration[src]

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

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

impl<T> Debug for [T; 12] where
    T: Debug
[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> Debug for fn(A, B) -> Ret[src]

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

impl<'a, P> Debug for SplitTerminator<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

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

impl Debug for AllocErr[src]

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

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

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

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

impl Debug for AtomicU64[src]

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

impl Debug for i8[src]

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

impl<T> Debug for [T; 24] where
    T: Debug
[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 Debug for SipHasher[src]

impl Debug for AtomicU32[src]

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

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

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

impl Debug for AtomicI16[src]

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

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

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

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

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

impl Debug for f32[src]

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

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

impl Debug for Excess[src]

impl Debug for AtomicI32[src]

impl Debug for i16[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 UnicodeVersion[src]

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

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

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

impl Debug for NoneError[src]

impl Debug for __m256d[src]

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

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

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

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

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

impl<T> Debug for PhantomData<T> where
    T: ?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 AtomicI64[src]

impl<I, P> Debug for TakeWhile<I, P> where
    I: Debug
[src]

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

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

impl Debug for NonZeroI128[src]

impl<T3, T4, T5, T6, T7, T8, T9, T10, T11> Debug for (T3, T4, T5, T6, T7, T8, T9, T10, T11) where
    T10: Debug,
    T11: Debug + ?Sized,
    T3: Debug,
    T4: Debug,
    T5: Debug,
    T6: Debug,
    T7: Debug,
    T8: Debug,
    T9: Debug
[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 Ordering[src]

impl<T> Debug for ManuallyDrop<T> where
    T: Debug + ?Sized
[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 [T; 32] where
    T: Debug
[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> Debug for extern "C" fn(A, B) -> Ret[src]

impl<Idx> Debug for RangeFrom<Idx> where
    Idx: Debug
[src]

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

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

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

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

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

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

impl Debug for AtomicUsize[src]

impl Debug for FpCategory[src]

impl Debug for u128[src]

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

impl<T> Debug for [T; 29] where
    T: Debug
[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 Debug for NonZeroU128[src]

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

impl Debug for ParseIntError[src]

impl Debug for TryFromSliceError[src]

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

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

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

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

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

impl Debug for ToLowercase[src]

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

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

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

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

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

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

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

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

impl<F> Debug for OnceWith<F> where
    F: Debug
[src]

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

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

impl<'a, P> Debug for MatchIndices<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl Debug for ParseBoolError[src]

impl Debug for __m128[src]

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

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

impl Debug for u32[src]

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

impl Debug for CpuidResult[src]

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

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

impl Debug for NonZeroIsize[src]

impl Debug for AtomicI8[src]

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

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

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

impl Debug for usize[src]

impl Debug for TypeId[src]

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

impl Debug for CannotReallocInPlace[src]

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

impl Debug for NonZeroI16[src]

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

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

impl Debug for dyn Any + 'static[src]

impl Debug for TryFromIntError[src]

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

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

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

impl Debug for __m512d[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<T> Debug for [T; 10] where
    T: Debug
[src]

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

impl Debug for __m256i[src]

impl Debug for AtomicU16[src]

impl Debug for NonZeroI8[src]

impl Debug for EscapeDefault[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<'a, P> Debug for RMatchIndices<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

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

impl Debug for NonZeroI64[src]

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

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

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

impl<'a, P> Debug for RSplit<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

impl<'a, P> Debug for RMatches<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl Debug for CollectionAllocErr[src]

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

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

impl<'a, K, V> Debug for Entry<'a, K, V> where
    K: 'a + Ord + Debug,
    V: 'a + Debug
[src]

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

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

impl<'a, K, V> Debug for VacantEntry<'a, K, V> where
    K: 'a + Ord + Debug,
    V: 'a, 
[src]

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

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

impl Debug for Global[src]

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

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

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

impl Debug for String[src]

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

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

impl Debug for ParseError[src]

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

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

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

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

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

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

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

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

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

impl Debug for FromUtf8Error[src]

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

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

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

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

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

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

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

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

impl Debug for FromUtf16Error[src]

impl<'a, K, V> Debug for OccupiedEntry<'a, K, V> where
    K: 'a + Ord + Debug,
    V: 'a + Debug
[src]

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

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

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

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

impl Debug for TryDemangleError

impl<S, F, U> Debug for OrElse<S, F, U> where
    F: Debug,
    S: Debug,
    U: Debug + IntoFuture,
    <U as IntoFuture>::Future: Debug
[src]

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

impl Debug for UnparkEvent[src]

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

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

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

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

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

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

impl<S, U, F, Fut> Debug for With<S, U, F, Fut> where
    F: Debug + FnMut(U) -> Fut,
    Fut: Debug + IntoFuture,
    S: Debug + Sink,
    U: Debug,
    <Fut as IntoFuture>::Future: Debug,
    <S as Sink>::SinkItem: Debug
[src]

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

impl<S, F, U> Debug for AndThen<S, F, U> where
    F: Debug,
    S: Debug,
    U: Debug + IntoFuture,
    <U as IntoFuture>::Future: Debug
[src]

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

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

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

impl<S> Debug for Chunks<S> where
    S: Debug + Stream,
    <S as Stream>::Item: Debug,
    <S as Stream>::Error: Debug
[src]

impl<S, F> Debug for FilterMap<S, F> where
    F: Debug,
    S: Debug
[src]

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

impl<S, F, Fut, T> Debug for Fold<S, F, Fut, T> where
    F: Debug,
    Fut: Debug + IntoFuture,
    S: Debug,
    T: Debug,
    <Fut as IntoFuture>::Future: Debug
[src]

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

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

impl<S> Debug for Concat<S> where
    S: Debug + Stream,
    <S as Stream>::Item: Debug
[src]

impl<S1, S2> Debug for Zip<S1, S2> where
    S1: Stream + Debug,
    S2: Stream + Debug,
    <S1 as Stream>::Item: Debug,
    <S2 as Stream>::Item: Debug
[src]

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

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

impl Debug for Task[src]

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

impl<S> Debug for BufferUnordered<S> where
    S: Stream + Debug,
    <S as Stream>::Item: IntoFuture,
    <<S as Stream>::Item as IntoFuture>::Future: Debug
[src]

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

impl<T, U> Debug for Forward<T, U> where
    T: Stream + Debug,
    U: Debug,
    <T as Stream>::Item: Debug
[src]

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

impl<S> Debug for Buffered<S> where
    S: Stream + Debug,
    <S as Stream>::Item: IntoFuture,
    <<S as Stream>::Item as IntoFuture>::Future: Debug,
    <<S as Stream>::Item as IntoFuture>::Item: Debug,
    <<S as Stream>::Item as IntoFuture>::Error: Debug
[src]

impl<T, E> Debug for SendError<T, E>[src]

impl<S> Debug for Send<S> where
    S: Sink + Debug,
    <S as Sink>::SinkItem: Debug
[src]

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

impl<S, F, U> Debug for ForEach<S, F, U> where
    F: Debug,
    S: Debug,
    U: Debug + IntoFuture,
    <U as IntoFuture>::Future: Debug
[src]

impl<S> Debug for CatchUnwind<S> where
    S: Debug + Stream
[src]

impl<S> Debug for Collect<S> where
    S: Debug + Stream,
    <S as Stream>::Item: Debug
[src]

impl<S1, S2> Debug for Select<S1, S2> where
    S1: Debug,
    S2: Debug
[src]

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

impl<S, P, R> Debug for SkipWhile<S, P, R> where
    P: Debug,
    R: Debug + IntoFuture,
    S: Debug + Stream,
    <R as IntoFuture>::Future: Debug,
    <S as Stream>::Item: Debug
[src]

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

impl<S> Debug for Peekable<S> where
    S: Stream + Debug,
    <S as Stream>::Item: Debug
[src]

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

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

impl<T, E> Debug for Repeat<T, E> where
    E: Debug,
    T: Debug + Clone
[src]

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

impl Debug for Canceled[src]

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

impl<S> Debug for Execute<S> where
    S: Stream
[src]

impl<S, U, F, St> Debug for WithFlatMap<S, U, F, St> where
    F: Debug + FnMut(U) -> St,
    S: Sink + Debug,
    St: Debug + Stream<Item = <S as Sink>::SinkItem, Error = <S as Sink>::SinkError>,
    U: Debug,
    <S as Sink>::SinkItem: Debug
[src]

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

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

impl<S, F> Debug for Map<S, F> where
    F: Debug,
    S: Debug
[src]

impl Debug for AtomicTask[src]

impl<S1, S2> Debug for Merge<S1, S2> where
    S1: Debug,
    S2: Stream + Debug,
    <S2 as Stream>::Error: Debug
[src]

impl<T, U> Debug for SendAll<T, U> where
    T: Debug,
    U: Stream + Debug,
    <U as Stream>::Item: Debug
[src]

impl<T, F, Fut> Debug for Unfold<T, F, Fut> where
    F: Debug,
    Fut: Debug + IntoFuture,
    T: Debug,
    <Fut as IntoFuture>::Future: Debug
[src]

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

impl<S, E> Debug for FromErr<S, E> where
    E: Debug,
    S: Debug
[src]

impl<S> Debug for Execute<S> where
    S: Stream
[src]

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

impl<S, F> Debug for Filter<S, F> where
    F: Debug,
    S: Debug
[src]

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

impl<S> Debug for Buffer<S> where
    S: Sink + Debug,
    <S as Sink>::SinkItem: Debug
[src]

impl Debug for Run[src]

impl<S, F, U> Debug for Then<S, F, U> where
    F: Debug,
    S: Debug,
    U: Debug + IntoFuture,
    <U as IntoFuture>::Future: Debug
[src]

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

impl<S> Debug for Flatten<S> where
    S: Debug + Stream,
    <S as Stream>::Item: Debug
[src]

impl<S, F> Debug for SinkMapErr<S, F> where
    F: Debug,
    S: Debug
[src]

impl<S, F> Debug for MapErr<S, F> where
    F: Debug,
    S: Debug
[src]

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

impl<S, P, R> Debug for TakeWhile<S, P, R> where
    P: Debug,
    R: Debug + IntoFuture,
    S: Debug + Stream,
    <R as IntoFuture>::Future: Debug,
    <S as Stream>::Item: Debug
[src]

impl<S, E> Debug for SinkFromErr<S, E> where
    E: Debug,
    S: Debug
[src]

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

impl<S, F> Debug for Inspect<S, F> where
    F: Debug,
    S: Debug + Stream
[src]

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

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

impl Debug for NotifyHandle[src]

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

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

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

impl<F> Debug for Execute<F> where
    F: Future + Debug
[src]

impl<S> Debug for Concat2<S> where
    S: Debug + Stream,
    <S as Stream>::Item: Debug
[src]

impl<S1, S2> Debug for Chain<S1, S2> where
    S1: Debug,
    S2: Debug
[src]

impl<I, E> Debug for IterOk<I, E> where
    E: Debug,
    I: Debug
[src]

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

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

impl<T> Debug for FuturesOrdered<T> where
    T: Debug + Future
[src]

impl<F> Debug for Execute<F> where
    F: Future + Debug
[src]

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

impl<S, F> Debug for InspectErr<S, F> where
    F: Debug,
    S: Debug + Stream
[src]

impl<I, E> Debug for SpawnHandle<I, E>[src]

impl<I, E> Debug for SpawnHandle<I, E>[src]

impl<I1, I2> Debug for MergedItem<I1, I2> where
    I1: Debug,
    I2: Debug
[src]

impl<F> Debug for PollFn<F> where
    F: Debug
[src]

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

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

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

impl<A, B> Debug for Fanout<A, B> where
    A: Sink + Debug,
    B: Sink + Debug,
    <A as Sink>::SinkItem: Debug,
    <B as Sink>::SinkItem: Debug
[src]

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

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

impl Debug for Parts[src]

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

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

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

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

impl Debug for PathAndQuery[src]

impl Debug for Authority[src]

impl Debug for HeaderValue[src]

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

impl Debug for InvalidUriBytes[src]

impl Debug for Builder[src]

impl Debug for Scheme[src]

impl Debug for InvalidHeaderValue[src]

impl Debug for InvalidHeaderNameBytes[src]

impl Debug for Error[src]

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

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

impl Debug for Parts[src]

impl Debug for InvalidHeaderValueBytes[src]

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

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

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

impl Debug for Uri[src]

impl Debug for Builder[src]

impl Debug for InvalidUriParts[src]

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

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

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

impl Debug for InvalidStatusCode[src]

impl Debug for Parts[src]

impl Debug for Builder[src]

impl Debug for Extensions[src]

impl Debug for StatusCode[src]

impl Debug for InvalidHeaderName[src]

impl Debug for HeaderName[src]

impl Debug for InvalidUri[src]

impl Debug for ToStrError[src]

impl Debug for Version[src]

impl Debug for InvalidMethod[src]

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

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

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

impl Debug for Bytes[src]

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

impl Debug for BytesMut[src]

impl<B> Debug for Writer<B> where
    B: Debug
[src]

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

impl<B> Debug for Reader<B> where
    B: Debug
[src]

impl Debug for BigEndian

impl Debug for LittleEndian

impl Debug for KEY_TYPE_SUBTYPE

impl Debug for STACKFRAME

impl Debug for RID_DEVICE_INFO

impl Debug for ADDRINFOEXW

impl Debug for D3D11_VIDEO_PROCESSOR_FILTER

impl Debug for IEnumShellItems

impl Debug for MSLLHOOKSTRUCT

impl Debug for NETINFOSTRUCT

impl Debug for SYMBOL_INFOW

impl Debug for DFS_INFO_1

impl Debug for SpeechBookmarkOptions

impl Debug for _wireBRECORD

impl Debug for RAWINPUTHEADER

impl Debug for SIZE

impl Debug for RPC_SECURITY_QOS_V2_A_union

impl Debug for ISpObjectToken

impl Debug for D2D_RECT_F

impl Debug for ID3D11Buffer

impl Debug for D3D12_SHADER_TYPE_DESC

impl Debug for WICJpegChrominanceProperties

impl Debug for ABC

impl Debug for IMenuPopup

impl Debug for D3DCOMPOSERECTDESTINATION

impl Debug for NEGOTIATE_CALLER_NAME_RESPONSE

impl Debug for ID3D11DepthStencilState

impl Debug for MONITORINFOEXW

impl Debug for USAGE_AND_PAGE

impl Debug for IDXGIFactory4

impl Debug for CYPHER_BLOCK

impl Debug for DWRITE_CLUSTER_METRICS

impl Debug for FILE_IO_PRIORITY_HINT_INFO

impl Debug for D3D12_DEPTH_WRITE_MASK

impl Debug for D3D12_ROOT_PARAMETER_TYPE

impl Debug for ID2D1Geometry

impl Debug for ID2D1GradientStopCollection

impl Debug for DISPID_SpeechPhraseRules

impl Debug for FIRMWARE_TYPE

impl Debug for FDAP

impl Debug for SecPkgContext_NegoStatus

impl Debug for IDWriteGlyphRunAnalysis

impl Debug for LSA_FOREST_TRUST_COLLISION_INFORMATION

impl Debug for D2D1_DRAWING_STATE_DESCRIPTION

impl Debug for TVITEMPART

impl Debug for TBINSERTMARK

impl Debug for ITransferAdviseSink

impl Debug for WINUSB_PIPE_INFORMATION

impl Debug for SPFILEMODE

impl Debug for TTHITTESTINFOW

impl Debug for TRIVERTEX

impl Debug for RPC_STATS_VECTOR

impl Debug for D3D11_RESOURCE_DIMENSION

impl Debug for D3DRASTER_STATUS

impl Debug for TIMECAPS

impl Debug for VSS_OBJECT_PROP

impl Debug for D3D12_SRV_DIMENSION

impl Debug for SPEVENTSOURCEINFO

impl Debug for LOCALGROUP_MEMBERS_INFO_1

impl Debug for D3D11_TEX1D_SRV

impl Debug for VSS_FILE_RESTORE_STATUS

impl Debug for SEC_APPLICATION_PROTOCOL_NEGOTIATION_EXT

impl Debug for DISPID_SpeechPhraseProperties

impl Debug for DOMAIN_CONTROLLER_INFOA

impl Debug for SecPkgContext_PackageInfoA

impl Debug for D3DBUSTYPE

impl Debug for IMAGEHLP_SYMBOL64

impl Debug for D3DVS_RASTOUT_OFFSETS

impl Debug for CONSOLE_SCREEN_BUFFER_INFOEX

impl Debug for D2D1_GAMMA

impl Debug for WICRect

impl Debug for SecPkgContext_SupportedSignatures

impl Debug for D3D11_SHADER_VARIABLE_DESC

impl Debug for PAINTSTRUCT

impl Debug for IFileDialog

impl Debug for NMSELCHANGE

impl Debug for D3DVIEWPORT9

impl Debug for D3D12_LIBRARY_DESC

impl Debug for DXGI_SAMPLE_DESC

impl Debug for XINPUT_STATE

impl Debug for CERT_REVOCATION_CHAIN_PARA

impl Debug for SpeechTokenContext

impl Debug for USER_INFO_1051

impl Debug for RPC_BINDING_HANDLE_TEMPLATE_V1_A_union

impl Debug for DISCDLGSTRUCTA

impl Debug for D3DVECTOR

impl Debug for DSCAPS

impl Debug for ILaunchTargetMonitor

impl Debug for FILE_SEGMENT_ELEMENT

impl Debug for RPC_BINDING_HANDLE_TEMPLATE_V1_W

impl Debug for NETLOGON_INFO_4

impl Debug for DSAFIPSVERSION_ENUM

impl Debug for PERFORMANCE_DATA

impl Debug for DISPID_SpeechRecoContext

impl Debug for LVSETINFOTIP

impl Debug for DEVPROPCOMPKEY

impl Debug for D3D12_PIPELINE_STATE_FLAGS

impl Debug for ERole

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_ShaderResourceView

impl Debug for ID2D1HwndRenderTarget

impl Debug for SPVOICESTATUS

impl Debug for CERT_STRONG_SIGN_PARA

impl Debug for MOUSE_EVENT_RECORD

impl Debug for IHWEventHandler2

impl Debug for IDirect3DPixelShader9

impl Debug for IKnownFolder

impl Debug for MSV1_0_PASSTHROUGH_REQUEST

impl Debug for IHomeGroup

impl Debug for D3D12_DISCARD_REGION

impl Debug for CERT_INFO

impl Debug for NMTOOLTIPSCREATED

impl Debug for IApplicationAssociationRegistration

impl Debug for IO_RANGE

impl Debug for DXGI_SWAP_CHAIN_FULLSCREEN_DESC

impl Debug for D3D12_DEPTH_STENCIL_DESC

impl Debug for BITMAP

impl Debug for IPackageDebugSettings

impl Debug for D3D11_FUNCTION_DESC

impl Debug for ISpeechAudioFormat

impl Debug for DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS

impl Debug for USER_MODALS_INFO_1003

impl Debug for CERT_OR_CRL_BUNDLE

impl Debug for NET_VALIDATE_PASSWORD_CHANGE_INPUT_ARG

impl Debug for D3D12_RESOURCE_ALLOCATION_INFO

impl Debug for IDXGIKeyedMutex

impl Debug for PATHNAME_BUFFER

impl Debug for IPrintDialogServices

impl Debug for D3DCOLORVALUE

impl Debug for D3D12_TEX2DMS_ARRAY_DSV

impl Debug for SPRECOSTATE

impl Debug for IWICBitmapLock

impl Debug for TBREPLACEBITMAP

impl Debug for IStreamAsync

impl Debug for LSA_TRANSLATED_SID

impl Debug for PROCESS_INFORMATION

impl Debug for IPersistFolder3

impl Debug for ID3D12RootSignatureDeserializer

impl Debug for KERB_PURGE_BINDING_CACHE_REQUEST

impl Debug for ID3D12LibraryReflection

impl Debug for IMAGE_DEBUG_MISC

impl Debug for D3D10_SHADER_TYPE_DESC

impl Debug for TCHITTESTINFO

impl Debug for IHandlerInfo

impl Debug for IInitializeWithItem

impl Debug for ID3D11LibraryReflection

impl Debug for IDXGIDevice2

impl Debug for WAVEFORMATEX

impl Debug for WICColorContextType

impl Debug for CS_DES

impl Debug for D3DTEXTUREADDRESS

impl Debug for HTTP_LOGGING_ROLLOVER_TYPE

impl Debug for D3DDEVINFO_D3D9BANDWIDTHTIMINGS

impl Debug for IDirect3D9Ex

impl Debug for BINARY_BLOB_CREDENTIAL_INFO

impl Debug for DISPID_SpeechRecognizer

impl Debug for IEnumVARIANT

impl Debug for CONSOLE_READCONSOLE_CONTROL

impl Debug for REBARINFO

impl Debug for NMDATETIMEFORMATQUERYA

impl Debug for RTL_UMS_THREAD_INFO_CLASS

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGURESHAREDRESOURCE

impl Debug for SPGRAMMARSTATE

impl Debug for SecPkgContext_NegoPackageInfo

impl Debug for REASON_CONTEXT_Detailed

impl Debug for WICComponentType

impl Debug for SPPHRASEPROPERTYUNIONTYPE

impl Debug for CIEXYZTRIPLE

impl Debug for KERB_TICKET_CACHE_INFO

impl Debug for DXGI_SWAP_CHAIN_DESC

impl Debug for IShellItemImageFactory

impl Debug for D2D1_STROKE_STYLE_PROPERTIES

impl Debug for KERB_TRANSFER_CRED_REQUEST

impl Debug for ID3D11Texture2D

impl Debug for SPPRONUNCIATIONFLAGS

impl Debug for SEC_WINNT_AUTH_DATA_PASSWORD

impl Debug for IParseAndCreateItem

impl Debug for IVssBackupComponents

impl Debug for IInitializeCommand

impl Debug for D3D11_FEATURE_DATA_FORMAT_SUPPORT2

impl Debug for INFCONTEXT

impl Debug for BUSNUMBER_DES

impl Debug for D3D11_CPU_ACCESS_FLAG

impl Debug for TBSAVEPARAMSW

impl Debug for WICBitmapCreateCacheOption

impl Debug for COPYFILE2_MESSAGE_Error

impl Debug for SPDISPLAYTOKEN

impl Debug for ID2D1DrawingStateBlock

impl Debug for IDXGIFactory

impl Debug for XINPUT_CAPABILITIES

impl Debug for SE_LEARNING_MODE_DATA_TYPE

impl Debug for USER_INFO_1009

impl Debug for IPersistFolder

impl Debug for CRYPTPROTECT_PROMPTSTRUCT

impl Debug for D3D12_CONSERVATIVE_RASTERIZATION_TIER

impl Debug for IEnumExtraSearch

impl Debug for SPPHRASERULE

impl Debug for SecPkgContext_IssuerListInfoEx

impl Debug for IEnumObjects

impl Debug for SPXMLRESULTOPTIONS

impl Debug for RPC_SECURITY_QOS_V4_A_union

impl Debug for HD_TEXTFILTERW

impl Debug for INameSpaceTreeAccessible

impl Debug for ISpRecognizer

impl Debug for ID3D11CommandList

impl Debug for SPBINARYGRAMMAR

impl Debug for BLENDFUNCTION

impl Debug for D2D1_TRIANGLE

impl Debug for MS_ADDINFO_CATALOGMEMBER

impl Debug for ID3D11CryptoSession

impl Debug for STREAM_INFO_LEVELS

impl Debug for IUserNotification

impl Debug for TCITEMHEADERW

impl Debug for XINPUT_VIBRATION

impl Debug for D3DVERTEXBLENDFLAGS

impl Debug for D3D12_FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS

impl Debug for CMSG_SIGNED_ENCODE_INFO

impl Debug for DXGI_RATIONAL

impl Debug for netent

impl Debug for POLICY_MODIFICATION_INFO

impl Debug for HIDP_BUTTON_CAPS

impl Debug for DISPID_SpeechRecoContextEvents

impl Debug for D3DAUTHENTICATEDCHANNEL_PROCESSIDENTIFIERTYPE

impl Debug for FINDEX_SEARCH_OPS

impl Debug for D3DCAPS9

impl Debug for CERT_CHAIN_POLICY_STATUS

impl Debug for CRYPT_HASH_INFO

impl Debug for D3D12_MESSAGE_SEVERITY

impl Debug for SPCFGRULEATTRIBUTES

impl Debug for POLYTEXTW

impl Debug for D3DSHADER_PARAM_REGISTER_TYPE

impl Debug for D2D1_ALPHA_MODE

impl Debug for ENUM_PAGE_FILE_INFORMATION

impl Debug for IInputObject2

impl Debug for ICurrentItem

impl Debug for CDCONTROLSTATE

impl Debug for D3DDISPLAYMODEFILTER

impl Debug for D3D10_SHADER_DESC

impl Debug for URL_COMPONENTS

impl Debug for OPENTYPE_FEATURE_RECORD

impl Debug for D3DDISPLAYMODE

impl Debug for ISpObjectTokenCategory

impl Debug for LVFOOTERITEM

impl Debug for SpeechFormatType

impl Debug for CorSymVarFlag

impl Debug for D3D12_BUFFER_UAV_FLAGS

impl Debug for D3D11_ENCRYPTED_BLOCK_INFO

impl Debug for ISpPhoneticAlphabetSelection

impl Debug for KERB_TICKET_CACHE_INFO_EX3

impl Debug for IMAGE_DATA_DIRECTORY

impl Debug for KERB_CRYPTO_KEY

impl Debug for SpeechAudioFormatType

impl Debug for SecPkgContext_MappedCredAttr

impl Debug for HTTP_RESPONSE_INFO_TYPE

impl Debug for NEGOTIATE_PACKAGE_PREFIX

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_OUTPUT

impl Debug for AFPROTOCOLS

impl Debug for WSAECOMPARATOR

impl Debug for PROCESS_INFORMATION_CLASS

impl Debug for HTTP_SERVICE_CONFIG_SSL_KEY

impl Debug for SecPkgContext_ProtoInfoW

impl Debug for SpeechRetainedAudioOptions

impl Debug for TBMETRICS

impl Debug for D3D11_INPUT_ELEMENT_DESC

impl Debug for SECPKG_CRED_CLASS

impl Debug for CERT_EXTENSION

impl Debug for DEVNAMES

impl Debug for MONITOR_DPI_TYPE

impl Debug for USBD_PIPE_TYPE

impl Debug for MEMORY_BASIC_INFORMATION32

impl Debug for D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_COUNT_OUTPUT

impl Debug for ISpNotifyCallback

impl Debug for PSAPI_WORKING_SET_EX_BLOCK

impl Debug for ID3D11RenderTargetView

impl Debug for D3D11_CONTENT_PROTECTION_CAPS

impl Debug for D3D11_SHADER_MIN_PRECISION_SUPPORT

impl Debug for ID2D1Image

impl Debug for D3D12_DSV_FLAGS

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYUNCOMPRESSEDENCRYPTIONLEVEL_OUTPUT

impl Debug for USER_INFO_21

impl Debug for D3DENCRYPTED_BLOCK_INFO

impl Debug for WIC8BIMIptcProperties

impl Debug for COMBOBOXEXITEMW

impl Debug for WAVEINCAPSW

impl Debug for DXGI_MATRIX_3X2_F

impl Debug for IRQ_DES_32

impl Debug for TP_POOL_STACK_INFORMATION

impl Debug for NLSVERSIONINFO

impl Debug for CRYPT_OID_INFO

impl Debug for NMPGCALCSIZE

impl Debug for IMMDeviceCollection

impl Debug for DATETIMEPICKERINFO

impl Debug for SPADAPTATIONSETTINGS

impl Debug for RTL_CRITICAL_SECTION_DEBUG

impl Debug for READER_SEL_REQUEST

impl Debug for IObjectWithAppUserModelID

impl Debug for D3D12_INPUT_ELEMENT_DESC

impl Debug for KERB_REFRESH_SCCRED_REQUEST

impl Debug for IShellLinkW

impl Debug for IWizardExtension

impl Debug for D3D12_DISPATCH_ARGUMENTS

impl Debug for TYPEATTR

impl Debug for LSA_OBJECT_ATTRIBUTES

impl Debug for USER_ALL_INFORMATION

impl Debug for IAccessibilityDockingServiceCallback

impl Debug for FILEPATHS_SIGNERINFO_W

impl Debug for D3D12_COMPARISON_FUNC

impl Debug for KERB_INTERACTIVE_LOGON

impl Debug for DEVMODEW

impl Debug for TRUSTED_POSIX_OFFSET_INFO

impl Debug for TYPEFLAGS

impl Debug for IFolderView

impl Debug for DISPID_SpeechAudioBufferInfo

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUID_INPUT

impl Debug for CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE

impl Debug for WSACOMPLETIONTYPE

impl Debug for SAFEARR_UNKNOWN

impl Debug for VSS_ALTERNATE_WRITER_STATE

impl Debug for KDHELP

impl Debug for D2D_MATRIX_4X3_F

impl Debug for IRQ_RESOURCE_64

impl Debug for TP_POOL

impl Debug for ID3D11Query

impl Debug for HARDWAREINPUT

impl Debug for CRYPTCATSTORE

impl Debug for WSAESETSERVICEOP

impl Debug for NET_DISPLAY_GROUP

impl Debug for PERFORMANCE_INFORMATION

impl Debug for D3D_MIN_PRECISION

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTIDCOUNT_OUTPUT

impl Debug for DFS_INFO_9

impl Debug for IFileSystemBindData2

impl Debug for GOFFSET

impl Debug for WICBitmapInterpolationMode

impl Debug for SecPkgContext_CredInfo

impl Debug for CERT_CHAIN_CONTEXT

impl Debug for ISpResourceManager

impl Debug for VOLUME_BITMAP_BUFFER

impl Debug for IMAGE_ROM_HEADERS

impl Debug for DEVMODEA

impl Debug for IVssEnumObject

impl Debug for RTL_CRITICAL_SECTION

impl Debug for ID3D12DebugCommandQueue

impl Debug for D3DCULL

impl Debug for D3D11_TEX1D_ARRAY_SRV

impl Debug for XINPUT_BATTERY_INFORMATION

impl Debug for NETRESOURCEW

impl Debug for IDXGIAdapter1

impl Debug for WICProgressOperation

impl Debug for WIN32_MEMORY_RANGE_ENTRY

impl Debug for FILE_RENAME_INFO

impl Debug for IQueryCodePage

impl Debug for IObjectWithSelection

impl Debug for FILE_ID_DESCRIPTOR

impl Debug for BUSNUMBER_RANGE

impl Debug for IWebWizardExtension

impl Debug for D3DMATERIALCOLORSOURCE

impl Debug for D3D_SHADER_VARIABLE_TYPE

impl Debug for ID2D1RectangleGeometry

impl Debug for ID3D11VideoDevice

impl Debug for IDXGISwapChain3

impl Debug for LOGBRUSH

impl Debug for ISupportErrorInfo

impl Debug for CERT_TRUST_LIST_INFO

impl Debug for DATE_STRUCT

impl Debug for HIDP_KEYBOARD_DIRECTION

impl Debug for SIGDN

impl Debug for METARECORD

impl Debug for SpeechLexiconType

impl Debug for INameSpaceTreeControlFolderCapabilities

impl Debug for NMDATETIMEFORMATQUERYW

impl Debug for QOS

impl Debug for WSANAMESPACE_INFOEXW

impl Debug for SCRIPT_ANALYSIS

impl Debug for ID3D11HullShader

impl Debug for NEGOTIATE_MESSAGES

impl Debug for DISPID_SpeechGrammarRule

impl Debug for SecPkgContext_RemoteCredentialInfo

impl Debug for CMS_DH_KEY_INFO

impl Debug for ICONINFO

impl Debug for DFS_STORAGE_INFO_1

impl Debug for HDITEMW

impl Debug for IWICBitmapFlipRotator

impl Debug for D3D12_SHADER_VISIBILITY

impl Debug for D3D12_GRAPHICS_PIPELINE_STATE_DESC

impl Debug for USER_INFO_1003

impl Debug for PANOSE

impl Debug for ACTCTXW

impl Debug for FILEPATHS_A

impl Debug for RTL_BARRIER

impl Debug for _wireVARIANT

impl Debug for FOCUS_EVENT_RECORD

impl Debug for IDirect3DQuery9

impl Debug for WSANAMESPACE_INFOW

impl Debug for SQL_DAY_SECOND_STRUCT

impl Debug for IContextMenu2

impl Debug for WINHTTP_WEB_SOCKET_BUFFER_TYPE

impl Debug for IMAGE_NT_HEADERS32

impl Debug for D3D11_DEPTH_STENCILOP_DESC

impl Debug for ID3D12ShaderReflectionVariable

impl Debug for USER_MODALS_INFO_3

impl Debug for RID_DEVICE_INFO_HID

impl Debug for DXGI_FRAME_PRESENTATION_MODE

impl Debug for AUDCLNT_SHAREMODE

impl Debug for USER_INFO_22

impl Debug for HTTP_SERVICE_CONFIG_QUERY_TYPE

impl Debug for D3D11_QUERY

impl Debug for MSV1_0_S4U_LOGON

impl Debug for eTlsHashAlgorithm

impl Debug for D3D12_TEX2DMS_DSV

impl Debug for SPPROPERTYINFO

impl Debug for ID3D11ModuleInstance

impl Debug for WSACOMPLETION

impl Debug for NMKEY

impl Debug for D3D11_BLEND

impl Debug for WSANSCLASSINFOA

impl Debug for IShellLinkDataList

impl Debug for DFS_INFO_3

impl Debug for KERB_NET_ADDRESSES

impl Debug for IComputerInfoChangeNotify

impl Debug for SPCATEGORYTYPE

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION_INPUT

impl Debug for IBandSite

impl Debug for KERB_DECRYPT_RESPONSE

impl Debug for MOVE_FILE_DATA

impl Debug for IDirect3DResource9

impl Debug for CRYPT_3DES_KEY_STATE

impl Debug for OFNOTIFYW

impl Debug for DISPID_SpeechAudioFormat

impl Debug for IDWriteFontFile

impl Debug for TASKDIALOG_ICON_ELEMENTS

impl Debug for READER_SEL_REQUEST_SerialNumberParameter

impl Debug for IAssocHandler

impl Debug for DS_DOMAIN_TRUSTSA

impl Debug for NMTVDISPINFOW

impl Debug for SINGLE_LIST_ENTRY

impl Debug for CS_RESOURCE

impl Debug for D3D11_TEXTURECUBE_FACE

impl Debug for timeval

impl Debug for ITypeInfo

impl Debug for NMPGHOTITEM

impl Debug for WICBitmapLockFlags

impl Debug for SIP_INDIRECT_DATA

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGURE_INPUT

impl Debug for DSROLE_PRIMARY_DOMAIN_INFO_LEVEL

impl Debug for SPEVENTENUM

impl Debug for HID_XFER_PACKET

impl Debug for IFileDialogCustomize

impl Debug for CRYPT_PROPERTY_REF

impl Debug for IWICFormatConverter

impl Debug for D3D11_RENDER_TARGET_VIEW_DESC

impl Debug for NMIPADDRESS

impl Debug for D3D12_COMMAND_QUEUE_DESC

impl Debug for LVCOLUMNW

impl Debug for D3D_OMAC

impl Debug for TEXTRANGE_PROPERTIES

impl Debug for LSA_FOREST_TRUST_COLLISION_RECORD

impl Debug for D3D12_GPU_DESCRIPTOR_HANDLE

impl Debug for ITaskbarList3

impl Debug for CTL_USAGE

impl Debug for GROUP_INFO_1

impl Debug for D2D1_BRUSH_PROPERTIES

impl Debug for PSAPI_WORKING_SET_EX_BLOCK_Invalid

impl Debug for HTTPSPolicyCallbackData

impl Debug for PDH_FMT_COUNTERVALUE

impl Debug for NMTVDISPINFOEXW

impl Debug for D3D11_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT

impl Debug for D3DRECTPATCH_INFO

impl Debug for CERT_RDN_ATTR

impl Debug for DXGI_OUTDUPL_POINTER_SHAPE_TYPE

impl Debug for ID3D12Fence

impl Debug for SecPkgInfoA

impl Debug for D3DPSHADERCAPS2_0

impl Debug for HTTP_LISTEN_ENDPOINT_INFO

impl Debug for IDXGIDevice1

impl Debug for KERB_S4U_LOGON

impl Debug for SecPkgContext_LogoffTime

impl Debug for SQL_INTERVAL_STRUCT

impl Debug for ID3D10ShaderReflectionVariable

impl Debug for HTTP_DATA_CHUNK_TYPE

impl Debug for WSACOMPLETION_Event

impl Debug for D3D_DRIVER_TYPE

impl Debug for D3D11_FEATURE_DATA_FORMAT_SUPPORT

impl Debug for FILE_NOTIFY_INFORMATION

impl Debug for CRL_INFO

impl Debug for EXCEPTION_DEBUG_INFO

impl Debug for SecPkgContext_SessionInfo

impl Debug for ID3D11Texture3D

impl Debug for D3D_REGISTER_COMPONENT_TYPE

impl Debug for WSAPOLLFD

impl Debug for PHONETICALPHABET

impl Debug for DISPID_SpeechXMLRecoResult

impl Debug for IShellBrowser

impl Debug for BCRYPT_MULTI_OBJECT_LENGTH_STRUCT

impl Debug for FUNCKIND

impl Debug for IDispatch

impl Debug for IBandHost

impl Debug for USER_MODALS_INFO_0

impl Debug for IFileSyncMergeHandler

impl Debug for USER_INFO_23

impl Debug for D3D12_RESOURCE_STATES

impl Debug for OBJECTID

impl Debug for IMAGE_ROM_OPTIONAL_HEADER

impl Debug for HID_COLLECTION_INFORMATION

impl Debug for KERB_QUERY_S4U2PROXY_CACHE_RESPONSE

impl Debug for SCRIPT_LOGATTR

impl Debug for RPC_BINDING_HANDLE_TEMPLATE_V1_A

impl Debug for SecPkgContext_EapPrfInfo

impl Debug for SecPkgContext_LocalCredentialInfo

impl Debug for D3DTEXTURETRANSFORMFLAGS

impl Debug for D3DCMPFUNC

impl Debug for PROCESS_HEAP_ENTRY

impl Debug for SecPkgContext_AuthorityA

impl Debug for ADDRINFOEXA

impl Debug for SpeechRunState

impl Debug for SPPHRASERNG

impl Debug for D3D11_BUFFEREX_SRV

impl Debug for IDisplayItem

impl Debug for ITypeFactory

impl Debug for D3D11_QUERY_DATA_PIPELINE_STATISTICS

impl Debug for SecPkgContext_CertInfo

impl Debug for DFS_INFO_2

impl Debug for DISPID_SpeechFileStream

impl Debug for D3D12_CLEAR_FLAGS

impl Debug for IShellIcon

impl Debug for DISPID_SpeechMemoryStream

impl Debug for SCROLLINFO

impl Debug for IResolveShellLink

impl Debug for D3D12_ROOT_SIGNATURE_DESC

impl Debug for USB_CONFIGURATION_DESCRIPTOR

impl Debug for ID3D12Object

impl Debug for SP_ALTPLATFORM_INFO_V2

impl Debug for DWRITE_TRIMMING

impl Debug for CRYPT_TIMESTAMP_PARA

impl Debug for _SC_ENUM_TYPE

impl Debug for CRED_MARSHAL_TYPE

impl Debug for FILEOPENDIALOGOPTIONS

impl Debug for KERB_CERTIFICATE_UNLOCK_LOGON

impl Debug for ISuspensionDependencyManager

impl Debug for DWRITE_READING_DIRECTION

impl Debug for ID3D12FunctionParameterReflection

impl Debug for QUOTA_LIMITS

impl Debug for TBBUTTONINFOW

impl Debug for IDXGIAdapter3

impl Debug for IUnknown

impl Debug for ACTIVATION_CONTEXT

impl Debug for D3D12_QUERY_TYPE

impl Debug for CTL_VERIFY_USAGE_STATUS

impl Debug for DRAWITEMSTRUCT

impl Debug for ISpDataKey

impl Debug for DSBUFFERDESC

impl Debug for MS_ADDINFO_FLAT

impl Debug for ANON_OBJECT_HEADER_V2

impl Debug for NMLVCUSTOMDRAW

impl Debug for CRYPT_OID_FUNC_ENTRY

impl Debug for LSA_FOREST_TRUST_INFORMATION

impl Debug for TVITEMW

impl Debug for D3DDEGREETYPE

impl Debug for ISharingConfigurationManager

impl Debug for RAWMOUSE

impl Debug for NMMOUSE

impl Debug for D2D_VECTOR_3F

impl Debug for D3D11_VIDEO_PROCESSOR_OUTPUT_RATE

impl Debug for CM_NOTIFY_EVENT_DATA

impl Debug for IDWriteTextRenderer

impl Debug for IDXGISwapChain2

impl Debug for HTTP_QOS_SETTING_TYPE

impl Debug for NET_DISPLAY_USER

impl Debug for KERB_RETRIEVE_TKT_RESPONSE

impl Debug for ICategoryProvider

impl Debug for MEM_DES

impl Debug for ANON_OBJECT_HEADER

impl Debug for SpeechGrammarWordType

impl Debug for MSV1_0_LM20_LOGON_PROFILE

impl Debug for TOUCHINPUT

impl Debug for SAFEARR_BRECORD

impl Debug for USER_INFO_1010

impl Debug for VSS_APPLICATION_LEVEL

impl Debug for HTTP_FLOWRATE_INFO

impl Debug for D3D12_RANGE

impl Debug for COORD

impl Debug for CERT_SELECT_CRITERIA

impl Debug for D3D11_DEPTH_STENCIL_DESC

impl Debug for INameSpaceTreeControlCustomDraw

impl Debug for D3D12_QUERY_DATA_SO_STATISTICS

impl Debug for HTTP_SERVICE_BINDING_W

impl Debug for RECTL

impl Debug for SecPkgContext_SessionKey

impl Debug for D3DDEVTYPE

impl Debug for IShellRunDll

impl Debug for SPSERIALIZEDEVENT

impl Debug for SCRIPT_FONTPROPERTIES

impl Debug for ID3D11VideoProcessorOutputView

impl Debug for COPYFILE2_MESSAGE_StreamFinished

impl Debug for DISPID_SpeechWaveFormatEx

impl Debug for MSV1_0_SUBAUTH_LOGON

impl Debug for D3D11_VIDEO_PROCESSOR_DEVICE_CAPS

impl Debug for ID3D12QueryHeap

impl Debug for D3D12_RENDER_TARGET_BLEND_DESC

impl Debug for D3D11_BUFFER_SRV

impl Debug for CREDENTIAL_TARGET_INFORMATIONW

impl Debug for IResultsFolder

impl Debug for TP_CALLBACK_PRIORITY

impl Debug for CRYPT_CONTEXT_FUNCTION_PROVIDERS

impl Debug for ISymUnmanagedBinder

impl Debug for SPVPRIORITY

impl Debug for NMLVFINDITEMA

impl Debug for DSROLE_PRIMARY_DOMAIN_INFO_BASIC

impl Debug for DRAWTEXTPARAMS

impl Debug for HDITEMA

impl Debug for ISpShortcut

impl Debug for FINDEX_INFO_LEVELS

impl Debug for IDirectSound

impl Debug for RPC_SECURITY_QOS_V2_W

impl Debug for ID3D12RootSignature

impl Debug for D3D11_VIDEO_USAGE

impl Debug for ITrayDeskBand

impl Debug for HTTP_CHANNEL_BIND_INFO

impl Debug for IInputObject

impl Debug for TBSAVEPARAMSA

impl Debug for DWRITE_INFORMATIONAL_STRING_ID

impl Debug for VARKIND

impl Debug for USBD_ISO_PACKET_DESCRIPTOR

impl Debug for IObjectWithCancelEvent

impl Debug for ID3D11DomainShader

impl Debug for D3D11_TEX1D_DSV

impl Debug for SP_ENABLECLASS_PARAMS

impl Debug for ID3D12CommandAllocator

impl Debug for BCryptBufferDesc

impl Debug for MODLOAD_CVMISC

impl Debug for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_ProcessorCore

impl Debug for SPLOADOPTIONS

impl Debug for LOGON_HOURS

impl Debug for D3D12_TEX2D_RTV

impl Debug for DWRITE_FONT_STRETCH

impl Debug for D3D11_AUTHENTICATED_QUERY_CURRENT_ACCESSIBILITY_ENCRYPTION_OUTPUT

impl Debug for ID3D11VideoDecoder

impl Debug for NMDATETIMESTRINGA

impl Debug for ACL

impl Debug for LSA_LAST_INTER_LOGON_INFO

impl Debug for NMLVGETINFOTIPW

impl Debug for IMAGE_SECTION_HEADER

impl Debug for AUDIT_POLICY_INFORMATION

impl Debug for D2D_SIZE_F

impl Debug for D3D12_TEXCUBE_ARRAY_SRV

impl Debug for SecPkgContext_AuthorityW

impl Debug for SpeechVoicePriority

impl Debug for D3DVERTEXBUFFER_DESC

impl Debug for SPWORDPRONUNCIATION

impl Debug for ICreateTypeInfo2

impl Debug for SPDISPLYATTRIBUTES

impl Debug for LVHITTESTINFO

impl Debug for NMTOOLBARA

impl Debug for D3D11_VPIV_DIMENSION

impl Debug for ISpLexicon

impl Debug for XINPUT_GAMEPAD

impl Debug for WSAMSG

impl Debug for GROUP_INFO_3

impl Debug for IOleCommandTarget

impl Debug for D3D11_CLEAR_FLAG

impl Debug for LM_OWF_PASSWORD

impl Debug for D3D12_FORMAT_SUPPORT1

impl Debug for POLICY_ACCOUNT_DOMAIN_INFO

impl Debug for TTGETTITLE

impl Debug for IDesktopWallpaper

impl Debug for KERB_SMART_CARD_LOGON

impl Debug for SAFEARRAYUNION

impl Debug for LVITEMA

impl Debug for SPADAPTATIONRELEVANCE

impl Debug for CERT_SYSTEM_STORE_INFO

impl Debug for ID2D1Mesh

impl Debug for IDXGISurface1

impl Debug for PROCESSOR_CACHE_TYPE

impl Debug for FILE_STREAM_INFO

impl Debug for PROCESS_MEMORY_COUNTERS_EX

impl Debug for CRYPT_ECC_PRIVATE_KEY_INFO

impl Debug for D3D12_TEX2D_ARRAY_SRV

impl Debug for LSA_LOOKUP_DOMAIN_INFO_CLASS

impl Debug for DISPID_SpeechPhraseRule

impl Debug for SecPkgContext_Target

impl Debug for D3D11_FEATURE_DATA_D3D9_SHADOW_SUPPORT

impl Debug for D3D12_RASTERIZER_DESC

impl Debug for IShellItemResources

impl Debug for IExplorerCommandState

impl Debug for LOGPALETTE

impl Debug for VSS_WRITER_STATE

impl Debug for SpeechGrammarState

impl Debug for D3D11_TEX2D_SRV

impl Debug for SCRIPT_VISATTR

impl Debug for MSG

impl Debug for SpeechWordPronounceable

impl Debug for SpeechDisplayAttributes

impl Debug for SAFEARRAY

impl Debug for PSS_CAPTURE_FLAGS

impl Debug for ID3D12DescriptorHeap

impl Debug for CONNECTDLGSTRUCTW

impl Debug for SP_REMOVEDEVICE_PARAMS

impl Debug for D3D12_RESOURCE_ALIASING_BARRIER

impl Debug for IProfferService

impl Debug for SPAUDIOBUFFERINFO

impl Debug for POLICY_AUDIT_EVENTS_INFO

impl Debug for D3DVS_ADDRESSMODE_TYPE

impl Debug for DWORD_SIZEDARR

impl Debug for DFS_INFO_102

impl Debug for DFS_INFO_150

impl Debug for DISPID_SpeechGrammarRuleState

impl Debug for CRYPT_TIMESTAMP_ACCURACY

impl Debug for NETCONNECTINFOSTRUCT

impl Debug for DWRITE_BREAK_CONDITION

impl Debug for NAME_BUFFER

impl Debug for SESSION_HEADER

impl Debug for D2D1_FIGURE_END

impl Debug for FDE_OVERWRITE_RESPONSE

impl Debug for D3D12_TEXTURE_COPY_TYPE

impl Debug for STARTING_LCN_INPUT_BUFFER

impl Debug for DXGI_SWAP_CHAIN_DESC1

impl Debug for D2D1_GEOMETRY_SIMPLIFICATION_OPTION

impl Debug for DWRITE_FONT_FILE_TYPE

impl Debug for ID3D10ShaderReflectionConstantBuffer

impl Debug for D3D11_TEX2DMS_SRV

impl Debug for THREADENTRY32

impl Debug for USER_INFO_1025

impl Debug for D3D12_TEX2D_DSV

impl Debug for ID3D11UnorderedAccessView

impl Debug for CRYPT_DES_KEY_STATE

impl Debug for PSAPI_WORKING_SET_EX_INFORMATION

impl Debug for REBARBANDINFOW

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYCRYPTOSESSION_OUTPUT

impl Debug for MOUSEINPUT

impl Debug for TIME_STRUCT

impl Debug for IIdentityName

impl Debug for D3D11_TEX3D_SRV

impl Debug for USER_MODALS_INFO_1004

impl Debug for D3D12_FENCE_FLAGS

impl Debug for IStream

impl Debug for D3DSWAPEFFECT

impl Debug for NMUPDOWN

impl Debug for ISpTranscript

impl Debug for SecPkgContext_Sizes

impl Debug for SPPHRASE_50

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_OUTPUT

impl Debug for SPEVENT

impl Debug for MODLOAD_PDBGUID_PDBAGE

impl Debug for MSV1_0_LOGON_SUBMIT_TYPE

impl Debug for WICGifCommentExtensionProperties

impl Debug for ISpRecoCategory

impl Debug for NMTVSTATEIMAGECHANGING

impl Debug for CRYPTOAPI_BLOB

impl Debug for KERB_ADD_BINDING_CACHE_ENTRY_REQUEST

impl Debug for NETLOGON_SERVICE_INFO

impl Debug for D3D11_BUFFER_RTV

impl Debug for LVGROUP

impl Debug for WICDecodeOptions

impl Debug for DISPID_SpeechPhraseReplacements

impl Debug for SPPARTOFSPEECH

impl Debug for WICPngChrmProperties

impl Debug for KERB_TICKET_UNLOCK_LOGON

impl Debug for D3D12_TILE_SHAPE

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGUREPROTECTION

impl Debug for SecPkgContext_PackageInfoW

impl Debug for D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_INPUT

impl Debug for D3D11_DRAW_INDEXED_INSTANCED_INDIRECT_ARGS

impl Debug for D3D12_FEATURE_DATA_D3D12_OPTIONS

impl Debug for NMTREEVIEWW

impl Debug for SecPkgContext_TargetInformation

impl Debug for IApplicationDesignModeSettings

impl Debug for IModalWindow

impl Debug for CALLCONV

impl Debug for VARDESC

impl Debug for ID2D1LinearGradientBrush

impl Debug for HTTP_MULTIPLE_KNOWN_HEADERS

impl Debug for IShellPropSheetExt

impl Debug for PRINTER_OPTIONSA

impl Debug for SEC_WINNT_AUTH_IDENTITY_W

impl Debug for DISPID_SpeechVoiceStatus

impl Debug for IDWriteFontCollectionLoader

impl Debug for USER_MODALS_INFO_1

impl Debug for HTTP_RESPONSE_INFO

impl Debug for SP_PROPCHANGE_PARAMS

impl Debug for D3D11_VDOV_DIMENSION

impl Debug for D3D12_QUERY_DATA_PIPELINE_STATISTICS

impl Debug for EXIT_THREAD_DEBUG_INFO

impl Debug for TP_IO

impl Debug for D3D11_TEX1D_ARRAY_UAV

impl Debug for D3DBASISTYPE

impl Debug for HEAPENTRY32

impl Debug for DMA_DES

impl Debug for WAVEHDR

impl Debug for RPC_HTTP_REDIRECTOR_STAGE

impl Debug for DWRITE_INLINE_OBJECT_METRICS

impl Debug for D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_INPUT

impl Debug for SecPkgContext_SessionAppData

impl Debug for IDWriteRenderingParams

impl Debug for ID3D12Debug

impl Debug for D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES

impl Debug for D3D11_RTV_DIMENSION

impl Debug for RPC_SECURITY_QOS_V3_W

impl Debug for HTTP_REQUEST_AUTH_TYPE

impl Debug for ID2D1SolidColorBrush

impl Debug for DISPID_SpeechPhraseReplacement

impl Debug for ID2D1Layer

impl Debug for WAVEFORMATEXTENSIBLE

impl Debug for PDH_COUNTER_PATH_ELEMENTS_W

impl Debug for CERT_REQUEST_INFO

impl Debug for IMMDeviceEnumerator

impl Debug for D3DZBUFFERTYPE

impl Debug for ENHMETAHEADER

impl Debug for DISPID_SpeechGrammarRules

impl Debug for _EXCEPTION_RECORD

impl Debug for ICategorizer

impl Debug for D3DDEVINFO_D3D9PIPELINETIMINGS

impl Debug for IInitializeWithWindow

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYDEVICEHANDLE_OUTPUT

impl Debug for METAFILEPICT

impl Debug for HIDP_VALUE_CAPS

impl Debug for KERB_PROFILE_BUFFER_TYPE

impl Debug for D3D12_BUFFER_UAV

impl Debug for WINHTTP_WEB_SOCKET_OPERATION

impl Debug for SecPkgCredentials_SSIProviderA

impl Debug for D3DAUTHENTICATEDCHANNEL_PROTECTION_FLAGS

impl Debug for FILE_COMPRESSION_INFO

impl Debug for CERT_CONTEXT

impl Debug for BLOBHEADER

impl Debug for DWRITE_STRIKETHROUGH

impl Debug for D3DDEVINFO_D3DVERTEXSTATS

impl Debug for KBDLLHOOKSTRUCT

impl Debug for DISPID_SpeechObjectToken

impl Debug for IFolderViewOptions

impl Debug for D3D12_SUBRESOURCE_DATA

impl Debug for PROCESS_MEMORY_COUNTERS

impl Debug for ITypeLib

impl Debug for IVssWriterComponents

impl Debug for HTTP_KNOWN_HEADER

impl Debug for ID2D1PathGeometry

impl Debug for SecPkgContext_NegotiationInfoW

impl Debug for IRegTreeItem

impl Debug for D3D11_CULL_MODE

impl Debug for HTTP_COOKED_URL

impl Debug for ID2D1EllipseGeometry

impl Debug for D3D12_RLDO_FLAGS

impl Debug for SecBufferDesc

impl Debug for IDXGIDevice

impl Debug for IDWriteFontFileLoader

impl Debug for DXGI_OUTDUPL_POINTER_POSITION

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE_INPUT

impl Debug for NMTBCUSTOMDRAW

impl Debug for HTTP_SERVER_AUTHENTICATION_INFO

impl Debug for INameSpaceTreeControl

impl Debug for SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION

impl Debug for SIP_ADD_NEWPROVIDER

impl Debug for USER_INFO_0

impl Debug for CREDENTIALA

impl Debug for SEC_APPLICATION_PROTOCOL_NEGOTIATION_STATUS

impl Debug for HTTP_DATA_CHUNK_FromFileHandle

impl Debug for VSS_OBJECT_UNION

impl Debug for ISpRecoContext

impl Debug for HTTP_REQUEST_AUTH_INFO

impl Debug for SEC_APPLICATION_PROTOCOL_LIST

impl Debug for USER_INFO_1024

impl Debug for D3D_SHADER_DATA

impl Debug for sockproto

impl Debug for MEASUREITEMSTRUCT

impl Debug for RPC_INTERFACE_TEMPLATEW

impl Debug for WOW64_LDT_ENTRY_Bytes

impl Debug for SecPkgContext_DceInfo

impl Debug for WIN32_FILE_ATTRIBUTE_DATA

impl Debug for D3D_SRV_DIMENSION

impl Debug for D3D11_DEPTH_WRITE_MASK

impl Debug for D3D12_TEX2D_ARRAY_UAV

impl Debug for TASKDIALOG_BUTTON

impl Debug for DXGI_MODE_ROTATION

impl Debug for IInputObjectSite

impl Debug for IShellLinkA

impl Debug for DWRITE_GLYPH_METRICS

impl Debug for DFS_SITENAME_INFO

impl Debug for SPDATAKEYLOCATION

impl Debug for WICComponentEnumerateOptions

impl Debug for in_addr_S_un_b

impl Debug for HTTP_UNKNOWN_HEADER

impl Debug for RPC_BINDING_HANDLE_OPTIONS_V1

impl Debug for CERT_CHAIN_POLICY_PARA

impl Debug for IEnumSTATURL

impl Debug for SpeechRuleState

impl Debug for HTTP_LOG_FIELDS_DATA

impl Debug for HTTP_CACHE_POLICY

impl Debug for MONITORINFO

impl Debug for D3D11_AUTHENTICATED_CHANNEL_TYPE

impl Debug for IVisualProperties

impl Debug for D3D12_TEX2D_ARRAY_RTV

impl Debug for HTTP_VERSION

impl Debug for DWRITE_WORD_WRAPPING

impl Debug for HTTP_ENABLED_STATE

impl Debug for POLICY_LSA_SERVER_ROLE_INFO

impl Debug for IDXGIDisplayControl

impl Debug for IBindCtx

impl Debug for RO_INIT_TYPE

impl Debug for D3D11_FEATURE_DATA_D3D11_OPTIONS1

impl Debug for DXGI_COLOR_SPACE_TYPE

impl Debug for COPYFILE2_MESSAGE_ACTION

impl Debug for IMMNotificationClient

impl Debug for LOGPEN

impl Debug for NMTCKEYDOWN

impl Debug for BCRYPT_OID

impl Debug for ACCESS_INFO_1

impl Debug for WINHTTP_CURRENT_USER_IE_PROXY_CONFIG

impl Debug for D3D11_SIGNATURE_PARAMETER_DESC

impl Debug for NUMBERFMTA

impl Debug for D3D11_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS

impl Debug for ISequentialStream

impl Debug for IExecuteCommand

impl Debug for IOperationsProgressDialog

impl Debug for DXGI_ALPHA_MODE

impl Debug for IDeskBandInfo

impl Debug for IApplicationDocumentLists

impl Debug for CIEXYZ

impl Debug for DXGI_OVERLAY_SUPPORT_FLAG

impl Debug for MSV1_0_SUBAUTH_RESPONSE

impl Debug for D3D12_TEX1D_ARRAY_RTV

impl Debug for IErrorLog

impl Debug for RIP_INFO

impl Debug for NMPGSCROLL

impl Debug for D3D12_FEATURE_DATA_FORMAT_INFO

impl Debug for SpeechDiscardType

impl Debug for D3D11_CONSERVATIVE_RASTERIZATION_TIER

impl Debug for D3D11_TEX2D_ARRAY_DSV

impl Debug for BCryptBuffer

impl Debug for D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE_OUTPUT

impl Debug for D3D11_AUTHENTICATED_QUERY_PROTECTION_OUTPUT

impl Debug for NMLVDISPINFOW

impl Debug for D2D1_GEOMETRY_RELATION

impl Debug for DISPID_SpeechPhraseElement

impl Debug for eTlsSignatureAlgorithm

impl Debug for DWRITE_FONT_STYLE

impl Debug for STACKFRAME_EX

impl Debug for CRYPT_CONTEXTS

impl Debug for IDirectSoundBuffer

impl Debug for SYSTEM_POWER_STATUS

impl Debug for IDXGISwapChainMedia

impl Debug for IQueryContinue

impl Debug for PSHNOTIFY

impl Debug for CorSymSearchPolicyAttributes

impl Debug for TP_CALLBACK_INSTANCE

impl Debug for IPropertyUI

impl Debug for D3D11_QUERY_DATA_SO_STATISTICS

impl Debug for LSA_REFERENCED_DOMAIN_LIST

impl Debug for TRACKMOUSEEVENT

impl Debug for D3D11_FORMAT_SUPPORT2

impl Debug for WICBitmapEncoderCacheOption

impl Debug for WICPngTimeProperties

impl Debug for DISPID_SpeechPhraseAlternate

impl Debug for IFileDialogControlEvents

impl Debug for D3D12_TEX1D_ARRAY_SRV

impl Debug for HMAC_INFO

impl Debug for POLICY_DOMAIN_KERBEROS_TICKET_INFO

impl Debug for KERB_NET_ADDRESS

impl Debug for RETRIEVAL_POINTERS_BUFFER_INTERNAL

impl Debug for CRYPT_IMAGE_REF

impl Debug for D3D12_SHADER_RESOURCE_VIEW_DESC

impl Debug for ID2D1Factory

impl Debug for protoent

impl Debug for KERB_QUERY_BINDING_CACHE_REQUEST

impl Debug for IPreviewItem

impl Debug for D3D12_DESCRIPTOR_RANGE

impl Debug for KERB_TICKET_CACHE_INFO_EX

impl Debug for D3D11_BUFFER_UAV_FLAG

impl Debug for RPC_SECURITY_QOS_V3_A_union

impl Debug for CRYPT_KEY_VERIFY_MESSAGE_PARA

impl Debug for sockaddr_in6

impl Debug for D3D12_CONSTANT_BUFFER_VIEW_DESC

impl Debug for LSA_UNICODE_STRING

impl Debug for SAFEARRAYBOUND

impl Debug for D3D12_HEAP_TYPE

impl Debug for IUserNotificationCallback

impl Debug for FPO_DATA

impl Debug for DXGI_FRAME_STATISTICS_MEDIA

impl Debug for D3DVERTEXELEMENT9

impl Debug for D3D12_BUFFER_SRV

impl Debug for ISpPhoneticAlphabetConverter

impl Debug for IObjectWithProgID

impl Debug for USER_INFO_4

impl Debug for TCITEMHEADERA

impl Debug for ISpXMLRecoResult

impl Debug for SP_INF_INFORMATION

impl Debug for D3D12_ROOT_DESCRIPTOR_TABLE

impl Debug for COMDLG_FILTERSPEC

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_A

impl Debug for D3D12_PREDICATION_OP

impl Debug for HELPINFO

impl Debug for CERT_REVOCATION_STATUS

impl Debug for D3D11_STANDARD_MULTISAMPLE_QUALITY_LEVELS

impl Debug for RPC_SECURITY_QOS

impl Debug for KERB_AUTH_DATA

impl Debug for D3D11_INPUT_CLASSIFICATION

impl Debug for D2D1_LAYER_PARAMETERS

impl Debug for VSS_COMPONENTINFO

impl Debug for IFileSystemBindData

impl Debug for D3D11_AUTHENTICATED_PROTECTION_FLAGS

impl Debug for USER_MODALS_INFO_2

impl Debug for ID2D1BitmapBrush

impl Debug for SCRIPT_CHARPROP

impl Debug for D3D11_TEXTURE_ADDRESS_MODE

impl Debug for D2D_POINT_2U

impl Debug for ISymUnmanagedBinder2

impl Debug for D3DSHADER_ADDRESSMODE_TYPE

impl Debug for VSS_USAGE_TYPE

impl Debug for DOMAIN_CONTROLLER_INFOW

impl Debug for DFS_INFO_50

impl Debug for D3D_SHADER_MACRO

impl Debug for HTTP_SERVICE_BINDING_A

impl Debug for DXGI_MODE_DESC1

impl Debug for DEVPRIVATE_RANGE

impl Debug for DISPID_SpeechPhoneConverter

impl Debug for MMTIME_midi

impl Debug for D3D12_BLEND_DESC

impl Debug for DSROLE_SERVER_STATE

impl Debug for IExtractImage

impl Debug for IExplorerPaneVisibility

impl Debug for DXGI_OUTDUPL_FRAME_INFO

impl Debug for IVssAsync

impl Debug for IDynamicHWHandler

impl Debug for IFrameworkInputPaneHandler

impl Debug for INameSpaceTreeControlDropHandler

impl Debug for DLGTEMPLATE

impl Debug for NET_VALIDATE_AUTHENTICATION_INPUT_ARG

impl Debug for D3D12_TEXTURE_LAYOUT

impl Debug for HTTP_SSL_INFO

impl Debug for hostent

impl Debug for D3D11_TEX2D_VPOV

impl Debug for D3D11_SAMPLER_DESC

impl Debug for D3D11_TEX2D_ARRAY_RTV

impl Debug for CRYPT_AES_128_KEY_STATE

impl Debug for SecPkgContext_UserFlags

impl Debug for D3D12_BLEND_OP

impl Debug for WOW64_LDT_ENTRY_Bits

impl Debug for DISPID_SpeechLexiconWords

impl Debug for WICBitmapPlaneDescription

impl Debug for IDirect3DAuthenticatedChannel9

impl Debug for D3DRESOURCETYPE

impl Debug for D3D10_SHADER_BUFFER_DESC

impl Debug for IMalloc

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYCRYPTOSESSION_INPUT

impl Debug for SP_FILE_COPY_PARAMS_W

impl Debug for KERB_RETRIEVE_TKT_REQUEST

impl Debug for KERB_QUERY_TKT_CACHE_REQUEST

impl Debug for in6_addr

impl Debug for SLIST_ENTRY

impl Debug for D2D_MATRIX_5X4_F

impl Debug for SpeechRecoContextState

impl Debug for TYPEDESC

impl Debug for DWRITE_LINE_METRICS

impl Debug for COINSTALLER_CONTEXT_DATA

impl Debug for WICPngBkgdProperties

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYUNRESTRICTEDPROTECTEDSHAREDRESOURCECOUNT_OUTPUT

impl Debug for IRunningObjectTable

impl Debug for PALETTEENTRY

impl Debug for DFS_INFO_100

impl Debug for D3D11_UNORDERED_ACCESS_VIEW_DESC

impl Debug for D3D12_DSV_DIMENSION

impl Debug for SECURITY_LOGON_SESSION_DATA

impl Debug for D3D12_COLOR_WRITE_ENABLE

impl Debug for JOBOBJECT_BASIC_LIMIT_INFORMATION

impl Debug for D3D11_TEX2DMS_ARRAY_SRV

impl Debug for BCRYPT_OAEP_PADDING_INFO

impl Debug for TRUSTED_DOMAIN_AUTH_INFORMATION

impl Debug for SPSEMANTICFORMAT

impl Debug for IFileOperation

impl Debug for HTTP_LOGGING_TYPE

impl Debug for D3DDECLTYPE

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_W

impl Debug for ID3D12FunctionReflection

impl Debug for SEC_NEGOTIATION_INFO

impl Debug for LIST_ENTRY64

impl Debug for USER_INFO_1008

impl Debug for D3DRENDERSTATETYPE

impl Debug for NMTVITEMCHANGE

impl Debug for WINHTTP_PROXY_INFO

impl Debug for POLICY_AUDIT_CATEGORIES_INFO

impl Debug for GCP_RESULTSA

impl Debug for CM_NOTIFY_FILTER_DeviceInterface

impl Debug for KERB_TICKET_LOGON

impl Debug for D3D_INCLUDE_TYPE

impl Debug for EXIT_PROCESS_DEBUG_INFO

impl Debug for KERB_QUERY_BINDING_CACHE_RESPONSE

impl Debug for D3D11_FORMAT_SUPPORT

impl Debug for IDXGIFactoryMedia

impl Debug for D3DLIGHT9

impl Debug for DWRITE_FONT_FACE_TYPE

impl Debug for BIND_OPTS

impl Debug for DWM_BLURBEHIND

impl Debug for WOW64_LDT_ENTRY

impl Debug for SpeechSpecialTransitionType

impl Debug for ACTCTX_SECTION_KEYED_DATA

impl Debug for DWRITE_FONT_SIMULATIONS

impl Debug for LVCOLUMNA

impl Debug for RPC_CLIENT_INFORMATION1

impl Debug for ID3D12ShaderReflectionType

impl Debug for SecPkgContext_CredentialNameA

impl Debug for D2D1_FACTORY_TYPE

impl Debug for MMTIME_u

impl Debug for NETSETUP_PROVISIONING_PARAMS

impl Debug for SPRECORESULTTIMES

impl Debug for NMTBHOTITEM

impl Debug for DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG

impl Debug for HTTP_SERVICE_CONFIG_URLACL_KEY

impl Debug for VSS_ROLLFORWARD_TYPE

impl Debug for HTTP_SERVICE_BINDING_BASE

impl Debug for NMCHAR

impl Debug for D3D12_TEX3D_SRV

impl Debug for CRYPT_ALGORITHM_IDENTIFIER

impl Debug for IAccessibilityDockingService

impl Debug for CRYPT_TIMESTAMP_CONTEXT

impl Debug for ACCESS_INFO_1002

impl Debug for CONSOLE_CURSOR_INFO

impl Debug for DWRITE_FACTORY_TYPE

impl Debug for LVTILEVIEWINFO

impl Debug for IO_RESOURCE

impl Debug for NORM_FORM

impl Debug for DXGI_FRAME_STATISTICS

impl Debug for HTTP_503_RESPONSE_VERBOSITY

impl Debug for POLICY_AUDIT_SID_ARRAY

impl Debug for IWICBitmap

impl Debug for IShellLibrary

impl Debug for SEC_WINNT_AUTH_PACKED_CREDENTIALS

impl Debug for __MIDL_IOleAutomationTypes_0001

impl Debug for DHPUBKEY

impl Debug for ISpRecoResult2

impl Debug for KERB_QUERY_KDC_PROXY_CACHE_REQUEST

impl Debug for D3D12_FILL_MODE

impl Debug for IDockingWindow

impl Debug for POLICY_DOMAIN_INFORMATION_CLASS

impl Debug for HIDP_KEYBOARD_MODIFIER_STATE

impl Debug for ISpeechResourceLoader

impl Debug for DEVPROPSTORE

impl Debug for WAVEOUTCAPSW

impl Debug for KERB_TICKET_PROFILE

impl Debug for D3D11_TEX2DMS_ARRAY_RTV

impl Debug for ITaskbarList4

impl Debug for D3D11_TEXTURE1D_DESC

impl Debug for IImageRecompress

impl Debug for D3D11_VIDEO_PROCESSOR_FILTER_RANGE

impl Debug for ID3D12DebugCommandList

impl Debug for SYSTEM_LOGICAL_PROCESSOR_INFORMATION

impl Debug for CERT_KEYGEN_REQUEST_INFO

impl Debug for SecBuffer

impl Debug for MEM_LARGE_DES

impl Debug for KERB_S4U2PROXY_CACHE_ENTRY_INFO

impl Debug for INewWindowManager

impl Debug for MSV1_0_AVID

impl Debug for DWRITE_NUMBER_SUBSTITUTION_METHOD

impl Debug for THREAD_INFORMATION_CLASS

impl Debug for IVssExamineWriterMetadata

impl Debug for SP_PROPSHEETPAGE_REQUEST

impl Debug for DWRITE_FONT_FEATURE

impl Debug for MODULEINFO

impl Debug for TRUSTED_DOMAIN_FULL_INFORMATION

impl Debug for OVERLAPPED_ENTRY

impl Debug for KERB_QUERY_TKT_CACHE_EX2_RESPONSE

impl Debug for D3D12_STREAM_OUTPUT_BUFFER_VIEW

impl Debug for LOAD_DLL_DEBUG_INFO

impl Debug for MS_ADDINFO_BLOB

impl Debug for USER_MODALS_INFO_1007

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESS_INPUT

impl Debug for D3D12_UNORDERED_ACCESS_VIEW_DESC

impl Debug for SPVPITCH

impl Debug for USER_INFO_1

impl Debug for VSS_WRITERRESTORE_ENUM

impl Debug for D2D1_COMBINE_MODE

impl Debug for IO_DES

impl Debug for PSAPI_WS_WATCH_INFORMATION_EX

impl Debug for D3D12_TEX2D_SRV

impl Debug for SecPkgCredentials_KdcProxySettingsW

impl Debug for KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE

impl Debug for USER_INFO_1006

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_V3_W

impl Debug for D2D1_LAYER_OPTIONS

impl Debug for D3D11_VIDEO_COLOR_YCbCrA

impl Debug for D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS

impl Debug for POINTER_INPUT_TYPE

impl Debug for DWRITE_FONT_FEATURE_TAG

impl Debug for ISpeechObjectTokenCategory

impl Debug for NMDAYSTATE

impl Debug for ID3D11PixelShader

impl Debug for D3D12_COMMAND_LIST_TYPE

impl Debug for IEnumResources

impl Debug for BUTTON_IMAGELIST

impl Debug for WICGifGraphicControlExtensionProperties

impl Debug for ITypeInfo2

impl Debug for USER_INFO_1014

impl Debug for RECT

impl Debug for IEnumerableView

impl Debug for IDirect3DVertexShader9

impl Debug for SR_SECURITY_DESCRIPTOR

impl Debug for IRQ_RESOURCE_32

impl Debug for NMTVGETINFOTIPA

impl Debug for POLICY_PRIMARY_DOMAIN_INFO

impl Debug for ENHMETARECORD

impl Debug for IEnumExplorerCommand

impl Debug for HTTP_QOS_SETTING_INFO

impl Debug for IParentAndItem

impl Debug for IContactManagerInterop

impl Debug for D3D12_PRIMITIVE_TOPOLOGY_TYPE

impl Debug for ISpObjectTokenInit

impl Debug for D3D11_CREATE_DEVICE_FLAG

impl Debug for KERB_PURGE_KDC_PROXY_CACHE_REQUEST

impl Debug for D3DCOMPOSERECTDESC

impl Debug for TRUSTED_CONTROLLERS_INFO

impl Debug for LOGICAL_PROCESSOR_RELATIONSHIP

impl Debug for HIDP_NOTRANGE_STRUCT

impl Debug for D2D1_QUADRATIC_BEZIER_SEGMENT

impl Debug for IDirect3D9ExOverlayExtension

impl Debug for IUrlHistoryStg2

impl Debug for IEnumAssocHandlers

impl Debug for ID3D11Module

impl Debug for SecPkgContext_Certificates

impl Debug for D3D_CBUFFER_TYPE

impl Debug for MSV1_0_VALIDATION_INFO

impl Debug for ID3D11AuthenticatedChannel

impl Debug for IContextMenuCB

impl Debug for DISPID_SpeechLexiconWord

impl Debug for CRL_CONTEXT

impl Debug for CREDENTIAL_ATTRIBUTEW

impl Debug for SpeechStreamSeekPositionType

impl Debug for TBBUTTONINFOA

impl Debug for IDirect3DDevice9Video

impl Debug for D3D11_SUBRESOURCE_DATA

impl Debug for LSA_FOREST_TRUST_BINARY_DATA

impl Debug for D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS

impl Debug for NETLOGON_INFO_2

impl Debug for D3D11_SHADER_INPUT_BIND_DESC

impl Debug for KERB_PROTOCOL_MESSAGE_TYPE

impl Debug for D2D1_BITMAP_INTERPOLATION_MODE

impl Debug for BCRYPT_MULTI_HASH_OPERATION

impl Debug for CERT_STRONG_SIGN_SERIALIZED_INFO

impl Debug for D3D11_DRAW_INSTANCED_INDIRECT_ARGS

impl Debug for DMA_RESOURCE

impl Debug for CRYPT_ATTRIBUTE

impl Debug for D3D11_TEX2D_RTV

impl Debug for IRecordInfo

impl Debug for ID3D12InfoQueue

impl Debug for HDHITTESTINFO

impl Debug for IMAGE_DEBUG_INFORMATION

impl Debug for ADDRESS64

impl Debug for KERB_INTERACTIVE_UNLOCK_LOGON

impl Debug for IFileOpenDialog

impl Debug for D3D_PARAMETER_FLAGS

impl Debug for D3D11_TEX2D_UAV

impl Debug for FILE_ID_INFO

impl Debug for D2D1_BITMAP_BRUSH_PROPERTIES

impl Debug for DWRITE_TEXT_ALIGNMENT

impl Debug for DXGI_GRAPHICS_PREEMPTION_GRANULARITY

impl Debug for POLICY_PD_ACCOUNT_INFO

impl Debug for POLICY_LSA_SERVER_ROLE

impl Debug for KERB_ADD_CREDENTIALS_REQUEST

impl Debug for ID2D1Brush

impl Debug for D3D11_TEX2DMS_DSV

impl Debug for DISPID_SpeechGrammarRuleStateTransitions

impl Debug for IPPROTO

impl Debug for GROUP_INFO_1005

impl Debug for ISpObjectWithToken

impl Debug for HASHALGORITHM_ENUM

impl Debug for SEC_CHANNEL_BINDINGS

impl Debug for D3D12_TEX2DMS_ARRAY_SRV

impl Debug for HEAP_OPTIMIZE_RESOURCES_INFORMATION

impl Debug for IDXGIFactory1

impl Debug for CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1

impl Debug for D3D12_RENDER_TARGET_VIEW_DESC

impl Debug for D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS

impl Debug for D3D12_RESOURCE_UAV_BARRIER

impl Debug for OVERLAPPED

impl Debug for IMAGE_DEBUG_DIRECTORY

impl Debug for HTTP_CACHE_POLICY_TYPE

impl Debug for ILaunchSourceViewSizePreference

impl Debug for IDWriteFont

impl Debug for HTTP_LOGGING_INFO

impl Debug for D3DTRIPATCH_INFO

impl Debug for NMREBAR

impl Debug for CERT_REVOCATION_INFO

impl Debug for KEY_EVENT_RECORD

impl Debug for D3D11_VIDEO_FRAME_FORMAT

impl Debug for CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE

impl Debug for DFS_INFO_300

impl Debug for SP_CLASSINSTALL_HEADER

impl Debug for RPC_PROTSEQ_VECTORA

impl Debug for D3D12_FILTER_REDUCTION_TYPE

impl Debug for ID3D12GraphicsCommandList

impl Debug for IUserNotification2

impl Debug for MMTIME

impl Debug for D3DBLENDOP

impl Debug for DISPID_SpeechAudioStatus

impl Debug for ID3D11VideoContext

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYCHANNELTYPE_OUTPUT

impl Debug for MEMORYSTATUS

impl Debug for NET_VALIDATE_PERSISTED_FIELDS

impl Debug for IDXGIFactory2

impl Debug for CONNECTDLGSTRUCTA

impl Debug for TRUSTED_DOMAIN_FULL_INFORMATION2

impl Debug for D3DMEMORYPRESSURE

impl Debug for NMTBGETINFOTIPA

impl Debug for HTTP_CONNECTION_LIMIT_INFO

impl Debug for SPWORDPRONOUNCEABLE

impl Debug for WSANETWORKEVENTS

impl Debug for MIDIHDR

impl Debug for D3D11_QUERY_DESC

impl Debug for SOCKET_PROCESSOR_AFFINITY

impl Debug for SPSERIALIZEDEVENT64

impl Debug for D3D12_FEATURE

impl Debug for D3D11_AUTHENTICATED_PROCESS_IDENTIFIER_TYPE

impl Debug for SP_UNREMOVEDEVICE_PARAMS

impl Debug for VSS_SOURCE_TYPE

impl Debug for POLICY_DOMAIN_EFS_INFO

impl Debug for RPC_BINDING_HANDLE_TEMPLATE_V1_W_union

impl Debug for NMBCDROPDOWN

impl Debug for NMDATETIMEWMKEYDOWNA

impl Debug for ICDBurnExt

impl Debug for NET_VALIDATE_PASSWORD_RESET_INPUT_ARG

impl Debug for LATENCY_TIME

impl Debug for POINTFLOAT

impl Debug for DWRITE_FONT_WEIGHT

impl Debug for STACKFRAME64

impl Debug for DISPID_SpeechCustomStream

impl Debug for REFS_VOLUME_DATA_BUFFER

impl Debug for D3D12_TEXTURE_COPY_LOCATION

impl Debug for ID3D12Heap

impl Debug for NMCOMBOBOXEXW

impl Debug for KERNINGPAIR

impl Debug for BCRYPT_KEY_LENGTHS_STRUCT

impl Debug for HTTP_REQUEST_CHANNEL_BIND_STATUS

impl Debug for FILE_BASIC_INFO

impl Debug for USER_INFO_11

impl Debug for RTL_UMS_SCHEDULER_REASON

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_V3_A

impl Debug for ipv6_mreq

impl Debug for BCRYPT_DSA_PARAMETER_HEADER

impl Debug for WSAQUERYSETA

impl Debug for DISPID_SpeechObjectTokens

impl Debug for HTTPAPI_VERSION

impl Debug for D3D11_VIDEO_PROCESSOR_FEATURE_CAPS

impl Debug for TASKDIALOG_COMMON_BUTTON_FLAGS

impl Debug for D3D12_UAV_DIMENSION

impl Debug for D3D11_VIDEO_PROCESSOR_ROTATION

impl Debug for VARIANT

impl Debug for BCRYPT_KEY_BLOB

impl Debug for SPSTREAMFORMAT

impl Debug for D3D_PRIMITIVE

impl Debug for PCCARD_DES

impl Debug for SEC_WINNT_AUTH_BYTE_VECTOR

impl Debug for HTTP_DATA_CHUNK_FromMemory

impl Debug for D3D11_BUFFER_DESC

impl Debug for KERB_SUBMIT_TKT_REQUEST

impl Debug for NMTBRESTORE

impl Debug for INPUT

impl Debug for D2D1_DC_INITIALIZE_MODE

impl Debug for GLYPHSET

impl Debug for IVssWMDependency

impl Debug for SpeechPartOfSpeech

impl Debug for in_addr_S_un_w

impl Debug for SecDelegationType

impl Debug for DEVPROPERTY

impl Debug for HANDLETABLE

impl Debug for DEP_SYSTEM_POLICY_TYPE

impl Debug for IMarshal

impl Debug for NTFS_FILE_RECORD_OUTPUT_BUFFER

impl Debug for NUMBERFMTW

impl Debug for IShellMenu

impl Debug for D3D11_FILTER

impl Debug for KNOWN_FOLDER_FLAG

impl Debug for CRYPT_PROVIDER_REFS

impl Debug for SPSHORTCUTPAIR

impl Debug for LVTILEINFO

impl Debug for IPublishingWizard

impl Debug for D3DTEXTURESTAGESTATETYPE

impl Debug for IContextMenuSite

impl Debug for IErrorInfo

impl Debug for IDLDESC

impl Debug for IDefaultFolderMenuInitialize

impl Debug for D3D11_VIDEO_PROCESSOR_FILTER_CAPS

impl Debug for MFCARD_RESOURCE

impl Debug for DXGI_RESIDENCY

impl Debug for ACCEL

impl Debug for READER_SEL_REQUEST_ReaderAndContainerParameter

impl Debug for POLICY_REPLICA_SOURCE_INFO

impl Debug for VSS_PROVIDER_TYPE

impl Debug for SP_DEVICE_INTERFACE_DATA

impl Debug for HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS

impl Debug for GROUP_INFO_1002

impl Debug for IVssBackupComponentsEx2

impl Debug for DXGI_SWAP_CHAIN_FLAG

impl Debug for TRUSTED_DOMAIN_SUPPORTED_ENCRYPTION_TYPES

impl Debug for CERT_CREDENTIAL_INFO

impl Debug for IShellItem

impl Debug for IRunnableTask

impl Debug for KERB_S4U2PROXY_CRED

impl Debug for KERB_CERTIFICATE_INFO

impl Debug for INITCOMMONCONTROLSEX

impl Debug for USER_INFO_1018

impl Debug for D3D12_MEMCPY_DEST

impl Debug for DWRITE_TEXTURE_TYPE

impl Debug for IHWEventHandler

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_V2_W

impl Debug for D3D12_RTV_DIMENSION

impl Debug for BCRYPT_DH_PARAMETER_HEADER

impl Debug for HIDP_DATA

impl Debug for HIDP_RANGE_STRUCT

impl Debug for CERT_SIGNED_CONTENT_INFO

impl Debug for HTTP_DATA_CHUNK_FromFragmentCacheEx

impl Debug for D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_OUTPUT

impl Debug for MAT2

impl Debug for IVssBackupComponentsEx4

impl Debug for D3DTEXTUREOP

impl Debug for WICBitmapPlane

impl Debug for PROCESSOR_POWER_POLICY_INFO

impl Debug for D2D1_FEATURE_LEVEL

impl Debug for STARTUPINFOA

impl Debug for D3D11_COUNTER_TYPE

impl Debug for D3D11_DSV_DIMENSION

impl Debug for D3D12_BUFFER_RTV

impl Debug for TYPEKIND

impl Debug for WICGifApplicationExtensionProperties

impl Debug for USER_SESSION_KEY

impl Debug for IUseToBrowseItem

impl Debug for IObjectProvider

impl Debug for IDelegateFolder

impl Debug for CMS_KEY_INFO

impl Debug for RPC_ENDPOINT_TEMPLATEA

impl Debug for SPAUDIOOPTIONS

impl Debug for PROCESSOR_NUMBER

impl Debug for OFNOTIFYEXA

impl Debug for WINUSB_SETUP_PACKET

impl Debug for ITypeComp

impl Debug for D3D11_BOX

impl Debug for D3DDEVINFO_D3D9STAGETIMINGS

impl Debug for D3D11_RAISE_FLAG

impl Debug for CRYPT_PROVIDER_REG

impl Debug for D3DPRESENT_PARAMETERS

impl Debug for D3D_FEATURE_LEVEL

impl Debug for D3DRECT

impl Debug for DSSSEED

impl Debug for CERT_CHAIN_PARA

impl Debug for DXGI_DECODE_SWAP_CHAIN_DESC

impl Debug for NMTBGETINFOTIPW

impl Debug for DXGI_COMPUTE_PREEMPTION_GRANULARITY

impl Debug for SPRUNSTATE

impl Debug for D3DSHADER_PARAM_SRCMOD_TYPE

impl Debug for HTTP_SERVICE_CONFIG_CACHE_SET

impl Debug for ADDRINFOA

impl Debug for IVssWMFiledesc

impl Debug for DWRITE_GLYPH_RUN_DESCRIPTION

impl Debug for SpeechRecoEvents

impl Debug for ADDRESS

impl Debug for DWRITE_SHAPING_TEXT_PROPERTIES

impl Debug for CUSTDATA

impl Debug for ID3D11VideoProcessorInputView

impl Debug for SecPkgContext_Flags

impl Debug for INameSpaceTreeControl2

impl Debug for DFS_TARGET_PRIORITY

impl Debug for D3DDECLMETHOD

impl Debug for D3D11_FEATURE_DATA_D3D11_OPTIONS3

impl Debug for D3D11_TEXTURE2D_DESC

impl Debug for D3D11_TEX2D_ARRAY_UAV

impl Debug for D3D_TESSELLATOR_PARTITIONING

impl Debug for D3D12_SO_DECLARATION_ENTRY

impl Debug for IExplorerCommandProvider

impl Debug for NCCALCSIZE_PARAMS

impl Debug for KERB_QUERY_KDC_PROXY_CACHE_RESPONSE

impl Debug for UDACCEL

impl Debug for IAudioClient

impl Debug for D3D_RESOURCE_RETURN_TYPE

impl Debug for NMLVDISPINFOA

impl Debug for D2D1_FIGURE_BEGIN

impl Debug for HIDP_UNKNOWN_TOKEN

impl Debug for ID3D11ShaderResourceView

impl Debug for TEXTMETRICW

impl Debug for SecPkgContext_NativeNamesA

impl Debug for D3D11_TEX3D_UAV

impl Debug for D3D12_RESOURCE_DIMENSION

impl Debug for UNWIND_HISTORY_TABLE_ENTRY

impl Debug for ADDURL_FLAG

impl Debug for TRUSTED_INFORMATION_CLASS

impl Debug for D3D11_BUFFEREX_SRV_FLAG

impl Debug for QUOTA_LIMITS_EX

impl Debug for CLAIM_SECURITY_ATTRIBUTES_INFORMATION

impl Debug for DFS_INFO_4

impl Debug for VSS_COMPONENT_TYPE

impl Debug for DEVICE_POWER_STATE

impl Debug for NMCUSTOMSPLITRECTINFO

impl Debug for CERT_EXTENSIONS

impl Debug for SP_NEWDEVICEWIZARD_DATA

impl Debug for CRYPT_KEY_PROV_INFO

impl Debug for D3D11_DEVICE_CONTEXT_TYPE

impl Debug for IDWriteFontList

impl Debug for HTTP_SERVICE_CONFIG_SSL_QUERY

impl Debug for KERB_PURGE_TKT_CACHE_EX_REQUEST

impl Debug for KERB_QUERY_DOMAIN_EXTENDED_POLICIES_REQUEST

impl Debug for IFolderFilterSite

impl Debug for ID3D11Counter

impl Debug for HTTP_SERVICE_CONFIG_IP_LISTEN_PARAM

impl Debug for SEC_WINNT_CREDUI_CONTEXT_VECTOR

impl Debug for D3D11_QUERY_MISC_FLAG

impl Debug for D3D11_VIDEO_DECODER_BUFFER_TYPE

impl Debug for CMSG_SIGNER_ENCODE_INFO

impl Debug for CONNECTION_DES

impl Debug for COMMPROP

impl Debug for DFS_STORAGE_INFO

impl Debug for SPPHRASEREPLACEMENT

impl Debug for D3D12_TEX1D_SRV

impl Debug for SP_DEVINFO_DATA

impl Debug for IObjectWithBackReferences

impl Debug for KERB_EXTERNAL_TICKET

impl Debug for UNWIND_HISTORY_TABLE

impl Debug for CRYPT_TIME_STAMP_REQUEST_INFO

impl Debug for DOMAIN_PASSWORD_INFORMATION

impl Debug for PKU2U_LOGON_SUBMIT_TYPE

impl Debug for IVssWMComponent

impl Debug for CRYPT_IMAGE_REG

impl Debug for ISpRegDataKey

impl Debug for FILEPATHS_W

impl Debug for D3D12_HEAP_DESC

impl Debug for D3D11_VIDEO_PROCESSOR_CAPS

impl Debug for D3D11_VIDEO_PROCESSOR_COLOR_SPACE

impl Debug for HIDP_LINK_COLLECTION_NODE

impl Debug for DWRITE_GLYPH_OFFSET

impl Debug for D3D11_MAP

impl Debug for TASKDIALOG_NOTIFICATIONS

impl Debug for WICPngGamaProperties

impl Debug for D3DDECLUSAGE

impl Debug for NLSVERSIONINFOEX

impl Debug for D2D_VECTOR_4F

impl Debug for USER_INFO_3

impl Debug for DISPID_SpeechMMSysAudio

impl Debug for INewMenuClient

impl Debug for EXCEPTION_DISPOSITION

impl Debug for TTTOOLINFOA

impl Debug for IContextMenu

impl Debug for HTTP_BANDWIDTH_LIMIT_INFO

impl Debug for D3D12_SHADER_INPUT_BIND_DESC

impl Debug for WICPngIccpProperties

impl Debug for SQL_NUMERIC_STRUCT

impl Debug for NMTBSAVE

impl Debug for SCHANNEL_ALG

impl Debug for EDITBALLOONTIP

impl Debug for IDWriteFontFileStream

impl Debug for POINTL

impl Debug for RPC_IF_ID

impl Debug for IDestinationStreamFactory

impl Debug for CM_NOTIFY_FILTER_DeviceHandle

impl Debug for COMMCONFIG

impl Debug for IFileSaveDialog

impl Debug for DISPID_SpeechLexicon

impl Debug for SPMATCHINGMODE

impl Debug for LOCALGROUP_INFO_0

impl Debug for D3D_TESSELLATOR_OUTPUT_PRIMITIVE

impl Debug for SPVLIMITS

impl Debug for D3D12_TEX1D_ARRAY_DSV

impl Debug for DISPID_SpeechBaseStream

impl Debug for VSS_BACKUP_TYPE

impl Debug for D3D12_ROOT_SIGNATURE_FLAGS

impl Debug for PCCARD_RESOURCE

impl Debug for TRUSTED_PASSWORD_INFO

impl Debug for DWRITE_SCRIPT_SHAPES

impl Debug for NMTRBTHUMBPOSCHANGING

impl Debug for SPNORMALIZATIONLIST

impl Debug for FLAGGED_WORD_BLOB

impl Debug for SPPHRASE_53

impl Debug for CRYPT_PROVIDER_REF

impl Debug for USER_INFO_2

impl Debug for D3D_ROOT_SIGNATURE_VERSION

impl Debug for ID3D11GeometryShader

impl Debug for D2D_RECT_U

impl Debug for WICImageParameters

impl Debug for DWRITE_MEASURING_MODE

impl Debug for D3D12_RESOURCE_BARRIER_TYPE

impl Debug for ID3D12Pageable

impl Debug for HTTP_SERVICE_CONFIG_URLACL_QUERY

impl Debug for DXGI_MODE_SCALING

impl Debug for MEMORY_BASIC_INFORMATION

impl Debug for COMPUTER_NAME_FORMAT

impl Debug for D3D10_SHADER_INPUT_BIND_DESC

impl Debug for PROPVARIANT

impl Debug for D3D11_OMAC

impl Debug for STATSTG

impl Debug for IDXGISwapChain1

impl Debug for NET_VALIDATE_PASSWORD_TYPE

impl Debug for MSA_INFO_0

impl Debug for ITaskbarList

impl Debug for BM_REQUEST_TYPE

impl Debug for D3D_SHADER_INPUT_FLAGS

impl Debug for IAppVisibility

impl Debug for IShellView3

impl Debug for D2D1_RENDER_TARGET_PROPERTIES

impl Debug for D3D11_TEX1D_RTV

impl Debug for LIST_ENTRY32

impl Debug for DWRITE_TRIMMING_GRANULARITY

impl Debug for SOURCE_MEDIA_A

impl Debug for FILEMUIINFO

impl Debug for CM_NOTIFY_EVENT_DATA_DeviceInstance

impl Debug for ID3D11SamplerState

impl Debug for DXGI_ADAPTER_FLAG

impl Debug for D2D_SIZE_U

impl Debug for DXGI_PRESENT_PARAMETERS

impl Debug for ICommDlgBrowser3

impl Debug for IMAGE_OPTIONAL_HEADER64

impl Debug for DISPID_SpeechDataKey

impl Debug for SPAUDIOSTATUS

impl Debug for D3DSHADER_MIN_PRECISION

impl Debug for TASKDIALOG_MESSAGES

impl Debug for WSACOMPLETION_WindowMessage

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC

impl Debug for IUpdateIDList

impl Debug for BITMAPINFO

impl Debug for UNLOAD_DLL_DEBUG_INFO

impl Debug for IPackageExecutionStateChangeNotification

impl Debug for DWRITE_GLYPH_RUN

impl Debug for IDXGISurface2

impl Debug for VALENTW

impl Debug for DISPID_SpeechPhraseInfo

impl Debug for D3D11_SHADER_BUFFER_DESC

impl Debug for DFS_INFO_103

impl Debug for SpeechLoadOption

impl Debug for RPC_BINDING_HANDLE_SECURITY_V1_W

impl Debug for FILE_STORAGE_INFO

impl Debug for IActionProgressDialog

impl Debug for FIXED

impl Debug for KERB_PURGE_TKT_CACHE_REQUEST

impl Debug for CRYPT_BIT_BLOB

impl Debug for SPSHORTCUTTYPE

impl Debug for D3D11_VIDEO_COLOR

impl Debug for WICProgressNotification

impl Debug for SERVICE_STATUS

impl Debug for SYSTEM_INFO

impl Debug for D3D12_SHADER_BYTECODE

impl Debug for ID3D12CommandList

impl Debug for USER_INFO_1011

impl Debug for NETSETUP_JOIN_STATUS

impl Debug for D3D12_SIGNATURE_PARAMETER_DESC

impl Debug for CY

impl Debug for D3D11_FEATURE_DATA_D3D9_OPTIONS

impl Debug for BCRYPT_DSA_PARAMETER_HEADER_V2

impl Debug for DISPID_SpeechRecoResult

impl Debug for ID3D12ShaderReflection

impl Debug for CERT_PUBLIC_KEY_INFO

impl Debug for IBrowserFrameOptions

impl Debug for D2D1_LINE_JOIN

impl Debug for MEMORY_BASIC_INFORMATION64

impl Debug for INamespaceWalkCB

impl Debug for D2D1_RENDER_TARGET_TYPE

impl Debug for BCRYPT_DSA_KEY_BLOB_V2

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESS_OUTPUT

impl Debug for D3DSHADER_COMPARISON

impl Debug for OLECMDTEXT

impl Debug for SecPkgContext_UiInfo

impl Debug for KERB_CLEANUP_MACHINE_PKINIT_CREDS_REQUEST

impl Debug for CRYPT_SIGN_MESSAGE_PARA

impl Debug for ISearchBoxInfo

impl Debug for NMREBARSPLITTER

impl Debug for SecPkgContext_ClientSpecifiedTarget

impl Debug for CABINET_INFO_A

impl Debug for DISPID_SpeechPhraseAlternates

impl Debug for RPC_SECURITY_QOS_V5_A

impl Debug for SEC_WINNT_CREDUI_CONTEXT

impl Debug for CERT_NAME_VALUE

impl Debug for D3D12_MESSAGE_ID

impl Debug for D3D12_TEX2DMS_ARRAY_RTV

impl Debug for ID2D1GeometryGroup

impl Debug for CLAIM_SECURITY_ATTRIBUTE_V1

impl Debug for CRYPT_CONTEXT_FUNCTIONS

impl Debug for D3D11_COLOR_WRITE_ENABLE

impl Debug for TVITEMEXW

impl Debug for D3D12_SAMPLER_DESC

impl Debug for SPDISPLAYPHRASE

impl Debug for ID3D12CommandQueue

impl Debug for IMAGE_NT_HEADERS64

impl Debug for DISPID_SpeechLexiconProns

impl Debug for GCP_RESULTSW

impl Debug for ID2D1GeometrySink

impl Debug for CERT_USAGE_MATCH

impl Debug for KERB_QUERY_TKT_CACHE_EX_RESPONSE

impl Debug for IHandlerActivationHost

impl Debug for DWRITE_LINE_SPACING_METHOD

impl Debug for D3DSAMPLERSTATETYPE

impl Debug for HIDP_EXTENDED_ATTRIBUTES

impl Debug for D2D1_RENDER_TARGET_USAGE

impl Debug for ISpeechAudioBufferInfo

impl Debug for MEM_LARGE_RANGE

impl Debug for IFolderView2

impl Debug for CURRENCYFMTA

impl Debug for ID3D12DebugDevice

impl Debug for ID3D11LinkingNode

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYPROTECTION_OUTPUT

impl Debug for GROUP_INFO_2

impl Debug for D3D12_TILE_MAPPING_FLAGS

impl Debug for NMLISTVIEW

impl Debug for D3D11_TEXCUBE_ARRAY_SRV

impl Debug for SCRIPT_TABDEF

impl Debug for NMLVSCROLL

impl Debug for STRING

impl Debug for IPreviewHandler

impl Debug for D3D11_BUFFER_UAV

impl Debug for IMAGELISTDRAWPARAMS

impl Debug for SecPkgContext_ClientCertPolicyResult

impl Debug for IDragSourceHelper2

impl Debug for IMAGE_OPTIONAL_HEADER32

impl Debug for D3D11_VIDEO_PROCESSOR_STEREO_FORMAT

impl Debug for ISpEventSink

impl Debug for POINT

impl Debug for TP_CALLBACK_ENVIRON_V3_s

impl Debug for COPYFILE2_MESSAGE_ChunkStarted

impl Debug for CM_NOTIFY_FILTER_TYPE

impl Debug for _wireSAFEARRAY

impl Debug for RPC_IF_ID_VECTOR

impl Debug for CTL_ENTRY

impl Debug for LOCALGROUP_MEMBERS_INFO_0

impl Debug for COMPAREITEMSTRUCT

impl Debug for DEVPROPKEY

impl Debug for IDirect3DVolumeTexture9

impl Debug for IThumbnailHandlerFactory

impl Debug for IRemoteComputer

impl Debug for D3D11_SHADER_DESC

impl Debug for RTL_RUN_ONCE

impl Debug for IDefaultExtractIconInit

impl Debug for SCRIPT_ITEM

impl Debug for RID_DEVICE_INFO_KEYBOARD

impl Debug for ACCESS_INFO_0

impl Debug for IApplicationAssociationRegistrationUI

impl Debug for PKU2U_CERTIFICATE_S4U_LOGON

impl Debug for CERT_REVOCATION_PARA

impl Debug for TASKDIALOG_FLAGS

impl Debug for WIC8BIMResolutionInfoProperties

impl Debug for IWizardSite

impl Debug for IColumnManager

impl Debug for IExecuteCommandApplicationHostEnvironment

impl Debug for IPropertyBag

impl Debug for ID3D10Blob

impl Debug for WICBitmapDecoderCapabilities

impl Debug for DSROLE_MACHINE_ROLE

impl Debug for HEAP_INFORMATION_CLASS

impl Debug for IShellItem2

impl Debug for D3DTRANSFORMSTATETYPE

impl Debug for TBBUTTON

impl Debug for CABINET_INFO_W

impl Debug for STREAM_SEEK

impl Debug for OFNOTIFYA

impl Debug for MSV1_0_INTERACTIVE_PROFILE

impl Debug for D2D1_PIXEL_FORMAT

impl Debug for PROV_ENUMALGS

impl Debug for CHAR_INFO

impl Debug for D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT_OUTPUT

impl Debug for DEVPRIVATE_DES

impl Debug for D3D12_HEAP_PROPERTIES

impl Debug for D3D12_DESCRIPTOR_RANGE_TYPE

impl Debug for DPASTREAMINFO

impl Debug for BUSNUMBER_RESOURCE

impl Debug for BCRYPT_OID_LIST

impl Debug for SecPkgContext_Lifespan

impl Debug for ID3D11ClassLinkage

impl Debug for LVBKIMAGEA

impl Debug for SpeechWordType

impl Debug for SPEVENTLPARAMTYPE

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERY_OUTPUT

impl Debug for HTTP_STATE_INFO

impl Debug for SPVISEMES

impl Debug for BCRYPT_DSA_KEY_BLOB

impl Debug for D3D11_VIDEO_PROCESSOR_OUTPUT_VIEW_DESC

impl Debug for MCGRIDINFO

impl Debug for D2D1_WINDOW_STATE

impl Debug for RAWHID

impl Debug for SPPHRASE

impl Debug for MENUITEMINFOW

impl Debug for IInsertItem

impl Debug for ITransferMediumItem

impl Debug for D3D11_VIDEO_CONTENT_PROTECTION_CAPS

impl Debug for linger

impl Debug for PKU2U_CERT_BLOB

impl Debug for SpeechTokenShellFolder

impl Debug for TCITEMW

impl Debug for SIP_SUBJECTINFO

impl Debug for D3D11_VIDEO_PROCESSOR_FORMAT_CAPS

impl Debug for CRYPT_TIMESTAMP_INFO

impl Debug for FUNCFLAGS

impl Debug for NMCUSTOMTEXT

impl Debug for FILE_ATTRIBUTE_TAG_INFO

impl Debug for SCHANNEL_CRED

impl Debug for USER_MODALS_INFO_1006

impl Debug for HTTP_SERVICE_CONFIG_TIMEOUT_KEY

impl Debug for CRYPT_PRIVATE_KEY_INFO

impl Debug for IRestrictedErrorInfo

impl Debug for CorSymAddrKind

impl Debug for COLORMAP

impl Debug for HTTP_AUTH_STATUS

impl Debug for D3D12_STENCIL_OP

impl Debug for D3D11_TEXTURE3D_DESC

impl Debug for DXGI_USAGE

impl Debug for D2D1_DEBUG_LEVEL

impl Debug for ISearchFolderItemFactory

impl Debug for IDXGIDecodeSwapChain

impl Debug for OUTLINETEXTMETRICA

impl Debug for D3D11_SHADER_VERSION_TYPE

impl Debug for WSANAMESPACE_INFOEXA

impl Debug for JOBOBJECT_EXTENDED_LIMIT_INFORMATION

impl Debug for ID3D11ShaderReflectionConstantBuffer

impl Debug for D3DAUTHENTICATEDCHANNELTYPE

impl Debug for BYTE_SIZEDARR

impl Debug for IMenuBand

impl Debug for SID_AND_ATTRIBUTES

impl Debug for DXGI_MAPPED_RECT

impl Debug for DWRITE_UNDERLINE

impl Debug for MFCARD_DES

impl Debug for NMREBARAUTOBREAK

impl Debug for WINHTTP_PROXY_RESULT_ENTRY

impl Debug for MEM_RANGE

impl Debug for D3D12_TEX3D_UAV

impl Debug for D3D11_FEATURE_DATA_D3D9_SIMPLE_INSTANCING_SUPPORT

impl Debug for KERB_ADD_CREDENTIALS_REQUEST_EX

impl Debug for D3D12_CPU_DESCRIPTOR_HANDLE

impl Debug for TRUSTED_DOMAIN_INFORMATION_EX

impl Debug for LOCKTYPE

impl Debug for IVssExamineWriterMetadataEx

impl Debug for D3D12_CULL_MODE

impl Debug for D3D10_SHADER_VARIABLE_DESC

impl Debug for STATURL

impl Debug for LOCALGROUP_INFO_1

impl Debug for ID2D1RadialGradientBrush

impl Debug for SPSERIALIZEDPHRASE

impl Debug for SecPkgCred_SupportedProtocols

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGUREINITIALIZE

impl Debug for HTTP_SERVICE_CONFIG_TIMEOUT_SET

impl Debug for NMDATETIMEWMKEYDOWNW

impl Debug for LVFINDINFOA

impl Debug for D3DFORMAT

impl Debug for KNONVOLATILE_CONTEXT_POINTERS

impl Debug for LUID_AND_ATTRIBUTES

impl Debug for IDirect3DTexture9

impl Debug for DISPID_SpeechVoice

impl Debug for WINHTTP_WEB_SOCKET_CLOSE_STATUS

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT

impl Debug for D3D11_VIDEO_PROCESSOR_STREAM

impl Debug for POLYTEXTA

impl Debug for ID2D1Bitmap

impl Debug for ID2D1SimplifiedGeometrySink

impl Debug for MSV1_0_PROTOCOL_MESSAGE_TYPE

impl Debug for CHARSETINFO

impl Debug for D3D_PRIMITIVE_TOPOLOGY

impl Debug for RPC_SECURITY_QOS_V2_A

impl Debug for HTTP_REQUEST_INFO_TYPE

impl Debug for IWICBitmapSource

impl Debug for HIDP_CAPS

impl Debug for SpeechGrammarRuleStateTransitionType

impl Debug for FLOAT128

impl Debug for CRYPT_INTERFACE_REG

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_Constant

impl Debug for HLOG

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUID_OUTPUT

impl Debug for DSROLE_OPERATION_STATE

impl Debug for D3D12_STREAM_OUTPUT_DESC

impl Debug for D3D12_INDEX_BUFFER_VIEW

impl Debug for COPYFILE2_COPY_PHASE

impl Debug for MEMORY_RESOURCE_NOTIFICATION_TYPE

impl Debug for D3D12_COMPUTE_PIPELINE_STATE_DESC

impl Debug for BY_HANDLE_FILE_INFORMATION

impl Debug for HIDP_REPORT_TYPE

impl Debug for IDXGIOutput1

impl Debug for KERB_CERTIFICATE_LOGON

impl Debug for TEXTMETRICA

impl Debug for DXGI_OUTDUPL_DESC

impl Debug for D3D11_TEXCUBE_SRV

impl Debug for SPWORDPRONUNCIATIONLIST

impl Debug for DXGI_OUTDUPL_MOVE_RECT

impl Debug for COMBOBOXEXITEMA

impl Debug for ISpStream

impl Debug for DFS_INFO_5

impl Debug for IDirect3DBaseTexture9

impl Debug for IDesktopGadget

impl Debug for NETSETUP_NAME_TYPE

impl Debug for POLICY_NOTIFICATION_INFORMATION_CLASS

impl Debug for NMLVGETINFOTIPA

impl Debug for MOVE_FILE_RECORD_DATA

impl Debug for CM_NOTIFY_EVENT_DATA_DeviceInterface

impl Debug for DHPUBKEY_VER3

impl Debug for IInitializeWithBindCtx

impl Debug for CERT_CHAIN_ENGINE_CONFIG

impl Debug for NMTTCUSTOMDRAW

impl Debug for CLEANLOCALSTORAGE

impl Debug for MONITOR_DISPLAY_STATE

impl Debug for READER_SEL_RESPONSE

impl Debug for D3D12_MESSAGE_CATEGORY

impl Debug for USERNAME_TARGET_CREDENTIAL_INFO

impl Debug for IDXGIOutput4

impl Debug for D3D11_FEATURE_DATA_D3D9_OPTIONS1

impl Debug for LSA_TRANSLATED_NAME

impl Debug for BCRYPT_KEY_DATA_BLOB_HEADER

impl Debug for NMBCHOTITEM

impl Debug for RPC_ENDPOINT_TEMPLATEW

impl Debug for FILE_ID_TYPE

impl Debug for NMHDDISPINFOW

impl Debug for SCRIPT_STATE

impl Debug for D2D1_PRESENT_OPTIONS

impl Debug for SP_ALTPLATFORM_INFO_V1

impl Debug for IEnumSpObjectTokens

impl Debug for SCHANNEL_ALERT_TOKEN

impl Debug for NMLVCACHEHINT

impl Debug for WINDOWPLACEMENT

impl Debug for D3D11_TEX2DMS_ARRAY_DSV

impl Debug for D3D11_VIDEO_PROCESSOR_CONTENT_DESC

impl Debug for ID3D11Resource

impl Debug for IDXGISurface

impl Debug for IServiceProvider

impl Debug for IClassFactory

impl Debug for SPSEMANTICERRORINFO

impl Debug for SPAUDIOSTATE

impl Debug for IDWriteGdiInterop

impl Debug for TIME_ZONE_INFORMATION

impl Debug for DISPPARAMS

impl Debug for DFS_SITELIST_INFO

impl Debug for PIPE_ATTRIBUTE_TYPE

impl Debug for BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO

impl Debug for D3D12_CONSERVATIVE_RASTERIZATION_MODE

impl Debug for NMHDR

impl Debug for IUrlHistoryStg

impl Debug for IDWriteFontCollection

impl Debug for CERT_CHAIN_ELEMENT

impl Debug for USB_DEVICE_TYPE

impl Debug for D3D11_BLEND_DESC

impl Debug for SPVSTATE

impl Debug for D3D11_FEATURE_DATA_D3D11_OPTIONS2

impl Debug for D3D12_DESCRIPTOR_HEAP_FLAGS

impl Debug for SPTEXTSELECTIONINFO

impl Debug for SPENDSRSTREAMFLAGS

impl Debug for HTTP_VERB

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERY_INPUT

impl Debug for IApartmentShutdown

impl Debug for DISPIDSPTSI

impl Debug for D3D_TESSELLATOR_DOMAIN

impl Debug for D3D12_TEX2D_UAV

impl Debug for D3DLIGHTTYPE

impl Debug for IItemNameLimits

impl Debug for NMRBAUTOSIZE

impl Debug for SpeechEngineConfidence

impl Debug for FILE_ID_128

impl Debug for IApplicationActivationManager

impl Debug for IShellTaskScheduler

impl Debug for LOCALGROUP_MEMBERS_INFO_3

impl Debug for IShellMenuCallback

impl Debug for WIC8BIMIptcDigestProperties

impl Debug for IInitializeNetworkFolder

impl Debug for HARDWARE_COUNTER_TYPE

impl Debug for D3D12_PACKED_MIP_INFO

impl Debug for MEM_RESOURCE

impl Debug for API_VERSION

impl Debug for SpeechStreamFileMode

impl Debug for SecPkgContext_KeyInfoA

impl Debug for NET_COMPUTER_NAME_TYPE

impl Debug for D3DDEVINFO_D3D9INTERFACETIMINGS

impl Debug for D3D11_DSV_FLAG

impl Debug for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG

impl Debug for NETLOGON_LOGON_INFO_CLASS

impl Debug for D3DPRIMITIVETYPE

impl Debug for IDXGIAdapter

impl Debug for NMHEADERA

impl Debug for IDXGIDeviceSubObject

impl Debug for RPC_SECURITY_QOS_V3_A

impl Debug for CENTRAL_ACCESS_POLICY_ENTRY

impl Debug for ISpRecoGrammar2

impl Debug for DCB

impl Debug for D3DMATRIX

impl Debug for OUTLINETEXTMETRICW

impl Debug for D3D12_FORMAT_SUPPORT2

impl Debug for KERB_INTERACTIVE_PROFILE

impl Debug for ISpPhraseAlt

impl Debug for VSS_SNAPSHOT_STATE

impl Debug for FILE_ALLOCATION_INFO

impl Debug for D3D12_TEX1D_DSV

impl Debug for UNIVERSAL_NAME_INFOA

impl Debug for SPRECOEVENTFLAGS

impl Debug for ID3D11VertexShader

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_UnorderedAccessView

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGURECRYPTOSESSION

impl Debug for D3D11_TEX1D_UAV

impl Debug for USER_INFO_1023

impl Debug for JOBOBJECTINFOCLASS

impl Debug for BCRYPT_HASH_OPERATION_TYPE

impl Debug for CRYPT_OBJID_TABLE

impl Debug for ID3D11Predicate

impl Debug for PSS_DUPLICATE_FLAGS

impl Debug for COPYFILE2_MESSAGE_PollContinue

impl Debug for D3D12_TILED_RESOURCES_TIER

impl Debug for ISpeechDataKey

impl Debug for PRINTDLGEXA

impl Debug for D3D12_RESOURCE_FLAGS

impl Debug for D3D11_AUTHENTICATED_QUERY_INPUT

impl Debug for D3D10_SIGNATURE_PARAMETER_DESC

impl Debug for HTTP_REQUEST_INFO

impl Debug for D2D1_ROUNDED_RECT

impl Debug for HSTRING_HEADER

impl Debug for USER_MODALS_INFO_1001

impl Debug for D3D12_MEMORY_POOL

impl Debug for D3D12_TEX2D_ARRAY_DSV

impl Debug for D3D11_FEATURE

impl Debug for ID3D11ShaderReflectionType

impl Debug for BCRYPT_DH_KEY_BLOB

impl Debug for RPC_INTERFACE_TEMPLATEA

impl Debug for ICreateTypeLib

impl Debug for INVOKEKIND

impl Debug for DXGI_MEMORY_SEGMENT_GROUP

impl Debug for CRYPT_HASH_MESSAGE_PARA

impl Debug for IStreamUnbufferedInfo

impl Debug for LVITEMINDEX

impl Debug for NTFS_VOLUME_DATA_BUFFER

impl Debug for SecPkgContext_LastClientTokenStatus

impl Debug for LSA_TRANSLATED_SID2

impl Debug for SecPkgContext_NegoKeys

impl Debug for ID3D12PipelineState

impl Debug for ISpGrammarBuilder

impl Debug for CTL_VERIFY_USAGE_PARA

impl Debug for SPVCONTEXT

impl Debug for GROUP_USERS_INFO_0

impl Debug for CREATESTRUCTW

impl Debug for IVssBackupComponentsEx

impl Debug for KERB_ADD_BINDING_CACHE_ENTRY_EX_REQUEST

impl Debug for D2D1_HWND_RENDER_TARGET_PROPERTIES

impl Debug for IFileDialogEvents

impl Debug for MSV1_0_LM20_LOGON

impl Debug for D3D12_SHADER_COMPONENT_MAPPING

impl Debug for HTTP_SERVICE_CONFIG_URLACL_PARAM

impl Debug for D2D_MATRIX_3X2_F

impl Debug for USER_INFO_10

impl Debug for ISpRecognizer2

impl Debug for D3D11_RASTERIZER_DESC

impl Debug for M128A

impl Debug for IDXGIResource

impl Debug for IEnumReadyCallback

impl Debug for HARDWARE_COUNTER_DATA

impl Debug for IMAGE_COFF_SYMBOLS_HEADER

impl Debug for MSV1_0_NTLM3_RESPONSE

impl Debug for DWRITE_FONT_METRICS

impl Debug for RPC_SECURITY_QOS_V5_A_union

impl Debug for WINHTTP_PROXY_RESULT

impl Debug for IDXGIOutputDuplication

impl Debug for IExtractImage2

impl Debug for RPC_SECURITY_QOS_V4_W

impl Debug for EDataFlow

impl Debug for LSA_FOREST_TRUST_RECORD

impl Debug for D3D12_TILED_RESOURCE_COORDINATE

impl Debug for ICreateTypeInfo

impl Debug for CREDUIWIN_MARSHALED_CONTEXT

impl Debug for CREDENTIAL_TARGET_INFORMATIONA

impl Debug for RPC_SECURITY_QOS_V4_A

impl Debug for STARTUPINFOW

impl Debug for IShellView2

impl Debug for D3D11_TILED_RESOURCES_TIER

impl Debug for D3DCONTENTPROTECTIONCAPS

impl Debug for D3D12_SHADER_VARIABLE_DESC

impl Debug for PARAMDESC

impl Debug for SpeechRecognizerState

impl Debug for DWRITE_PIXEL_GEOMETRY

impl Debug for D3D12_TEX1D_UAV

impl Debug for D3D12_FILTER_TYPE

impl Debug for CERT_TRUST_STATUS

impl Debug for CERT_SELECT_CHAIN_PARA

impl Debug for ip_mreq

impl Debug for SpeechRuleAttributes

impl Debug for SECPKG_ATTR_LCT_STATUS

impl Debug for IDWriteFontFileEnumerator

impl Debug for SecPkgContext_ConnectionInfo

impl Debug for D3DCOMPOSERECTSOP

impl Debug for ITypeChangeEvents

impl Debug for D3D12_PLACED_SUBRESOURCE_FOOTPRINT

impl Debug for D2D1_PATH_SEGMENT

impl Debug for WINUSB_PIPE_INFORMATION_EX

impl Debug for D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT_OUTPUT

impl Debug for BCRYPT_ECCKEY_BLOB

impl Debug for CM_NOTIFY_EVENT_DATA_DeviceHandle

impl Debug for JOB_SET_ARRAY

impl Debug for D3D12_TEX1D_ARRAY_UAV

impl Debug for D3D12_DEPTH_STENCILOP_DESC

impl Debug for HTTP_AUTHENTICATION_HARDENING_LEVELS

impl Debug for D3D12_VERTEX_BUFFER_VIEW

impl Debug for FILE_ID_BOTH_DIR_INFO

impl Debug for D3D12_STATIC_BORDER_COLOR

impl Debug for SecPkgContext_NativeNamesW

impl Debug for D2D1_GRADIENT_STOP

impl Debug for CRYPT_ENCRYPT_MESSAGE_PARA

impl Debug for TCITEMA

impl Debug for SIP_CAP_SET_V3

impl Debug for HTTP_TIMEOUT_LIMIT_INFO

impl Debug for IUrlHistoryNotify

impl Debug for IDragSourceHelper

impl Debug for D3DBLEND

impl Debug for SecPkgContext_StreamSizes

impl Debug for SYSTEM_POWER_STATE

impl Debug for SecPkgContext_ProtoInfoA

impl Debug for CRYPT_KEY_SIGN_MESSAGE_PARA

impl Debug for D3DSCANLINEORDERING

impl Debug for IPersistIDList

impl Debug for D3D11_TEX2D_ARRAY_SRV

impl Debug for ICreateErrorInfo

impl Debug for D3DDEVINFO_RESOURCEMANAGER

impl Debug for VSS_PROVIDER_PROP

impl Debug for SPWAVEFORMATTYPE

impl Debug for RTL_SRWLOCK

impl Debug for ID3D11View

impl Debug for DELETEITEMSTRUCT

impl Debug for D2D1_EXTEND_MODE

impl Debug for IDirect3DCubeTexture9

impl Debug for SecPkgContext_KeyInfoW

impl Debug for D3D12_PARAMETER_DESC

impl Debug for D3DINDEXBUFFER_DESC

impl Debug for D3D11_FEATURE_DATA_DOUBLES

impl Debug for SpeechVisemeFeature

impl Debug for SOCKADDR_IN

impl Debug for CRYPT_ENROLLMENT_NAME_VALUE_PAIR

impl Debug for ID3D11FunctionReflection

impl Debug for ISpDisplayAlternates

impl Debug for D3DSHADER_INSTRUCTION_OPCODE_TYPE

impl Debug for LVGROUPMETRICS

impl Debug for LSA_FOREST_TRUST_DOMAIN_INFO

impl Debug for D3D12_TEX1D_RTV

impl Debug for PRIORITY_HINT

impl Debug for SpeechEmulationCompareFlags

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTIDCOUNT_INPUT

impl Debug for ID3D10ShaderReflectionType

impl Debug for SOLE_AUTHENTICATION_SERVICE

impl Debug for DISPID_SpeechAudio

impl Debug for MEMORYSTATUSEX

impl Debug for D3D11_USAGE

impl Debug for BCRYPT_MULTI_OPERATION_TYPE

impl Debug for D2D1_ELLIPSE

impl Debug for DWRITE_LINE_BREAKPOINT

impl Debug for D3DDEVINFO_D3D9CACHEUTILIZATION

impl Debug for NET_VALIDATE_OUTPUT_ARG

impl Debug for SCRIPT_DIGITSUBSTITUTE

impl Debug for IDXGIResource1

impl Debug for ITransferDestination

impl Debug for EXCEPTION_POINTERS

impl Debug for D3D11_TEX2D_VDOV

impl Debug for PKU2U_CREDUI_CONTEXT

impl Debug for FILE_ALIGNMENT_INFO

impl Debug for D3D12_TILE_RANGE_FLAGS

impl Debug for SAFEARR_BSTR

impl Debug for REMOTE_NAME_INFOW

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESSCOUNT_OUTPUT

impl Debug for LOCALGROUP_INFO_1002

impl Debug for DWRITE_SCRIPT_ANALYSIS

impl Debug for SpeechRecognitionType

impl Debug for DXGI_QUERY_VIDEO_MEMORY_INFO

impl Debug for D3D11_VIDEO_PROCESSOR_CUSTOM_RATE

impl Debug for ISpNotifyTranslator

impl Debug for NMLVFINDITEMW

impl Debug for IDWriteTypography

impl Debug for SEC_WINNT_AUTH_IDENTITY_A

impl Debug for IWICPlanarFormatConverter

impl Debug for D3D12_SHADER_BUFFER_DESC

impl Debug for ITransferSource

impl Debug for D3D12_DESCRIPTOR_HEAP_DESC

impl Debug for LVFOOTERINFO

impl Debug for WICJpegCommentProperties

impl Debug for D3D11_STENCIL_OP

impl Debug for CSADDR_INFO

impl Debug for INamespaceWalk

impl Debug for SP_DEVICE_INTERFACE_DETAIL_DATA_A

impl Debug for ISpNotifySource

impl Debug for RAWKEYBOARD

impl Debug for WICComponentSigning

impl Debug for USER_INFO_24

impl Debug for D3D12_FILTER

impl Debug for D3DBACKBUFFER_TYPE

impl Debug for IDirect3D9

impl Debug for CRYPT_CONTEXT_CONFIG

impl Debug for IFolderViewSettings

impl Debug for KERB_SETPASSWORD_REQUEST

impl Debug for ID3D11BlendState

impl Debug for LOCALGROUP_USERS_INFO_0

impl Debug for WSC_PROVIDER_INFO_TYPE

impl Debug for SecPkgContext_NamesW

impl Debug for IObjectWithFolderEnumMode

impl Debug for CRYPT_PROVIDERS

impl Debug for INameSpaceTreeControlEvents

impl Debug for DISPID_SpeechVoiceEvent

impl Debug for MSA_INFO_LEVEL

impl Debug for D3D12_FUNCTION_DESC

impl Debug for ITaskbarList2

impl Debug for FILE_FULL_DIR_INFO

impl Debug for SP_CLASSIMAGELIST_DATA

impl Debug for LAYERPLANEDESCRIPTOR

impl Debug for AsyncIUnknown

impl Debug for D3DVOLUME_DESC

impl Debug for ID3D12Resource

impl Debug for D3D12_VIEWPORT

impl Debug for LSA_FOREST_TRUST_RECORD_ForestTrustData

impl Debug for CTL_CONTEXT

impl Debug for ARRAYDESC

impl Debug for ID3D12CommandSignature

impl Debug for DS_DOMAIN_TRUSTSW

impl Debug for SOCKET_ADDRESS

impl Debug for IUserAccountChangeCallback

impl Debug for IDXGIObject

impl Debug for ISpMMSysAudio

impl Debug for D3D11_FILL_MODE

impl Debug for KERB_SMART_CARD_UNLOCK_LOGON

impl Debug for MSV1_0_PASSTHROUGH_RESPONSE

impl Debug for ISpeechWaveFormatEx

impl Debug for NTFS_EXTENDED_VOLUME_DATA

impl Debug for D2D1_FACTORY_OPTIONS

impl Debug for ID2D1Resource

impl Debug for CRYPT_DECRYPT_MESSAGE_PARA

impl Debug for SECURITY_CAPABILITIES

impl Debug for MSV1_0_PROFILE_BUFFER_TYPE

impl Debug for NETLOGON_GENERIC_INFO

impl Debug for D3D11_UAV_DIMENSION

impl Debug for D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_OUTPUT

impl Debug for ISpVoice

impl Debug for VARENUM

impl Debug for in_addr

impl Debug for ICreateTypeLib2

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_OUTPUT

impl Debug for IDeskBar

impl Debug for OLECMD

impl Debug for MENUITEMINFOA

impl Debug for KNONVOLATILE_CONTEXT_POINTERS_u1

impl Debug for DSROLE_OPERATION_STATE_INFO

impl Debug for ITypeLib2

impl Debug for BCRYPT_PROVIDER_NAME

impl Debug for D3D12_RESOURCE_DESC

impl Debug for _DXGI_OFFER_RESOURCE_PRIORITY

impl Debug for SecPkgContext_Bindings

impl Debug for FLASHWINFO

impl Debug for NMOBJECTNOTIFY

impl Debug for IDWritePixelSnapping

impl Debug for STGTY

impl Debug for SCHANNEL_SESSION_TOKEN

impl Debug for IEnumFullIDList

impl Debug for HTTP_SERVICE_CONFIG_CACHE_KEY

impl Debug for IVssBackupComponentsEx3

impl Debug for D3D12_RESOURCE_TRANSITION_BARRIER

impl Debug for PARAMDESCEX

impl Debug for WSANAMESPACE_INFOA

impl Debug for STARTING_VCN_INPUT_BUFFER

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT

impl Debug for D3DLOCKED_BOX

impl Debug for D2D1_FILL_MODE

impl Debug for NMLVODSTATECHANGE

impl Debug for IAttachmentExecute

impl Debug for BCRYPT_PKCS1_PADDING_INFO

impl Debug for IDropTargetHelper

impl Debug for CRYPT_ATTRIBUTE_TYPE_VALUE

impl Debug for D3D12_SHADER_DESC

impl Debug for D3D12_CACHED_PIPELINE_STATE

impl Debug for SF_TYPE

impl Debug for DFS_INFO_8

impl Debug for SpeechVoiceSpeakFlags

impl Debug for D2D1_ANTIALIAS_MODE

impl Debug for IPersistFolder2

impl Debug for D3D_SHADER_CBUFFER_FLAGS

impl Debug for SEC_APPLICATION_PROTOCOLS

impl Debug for IAccessibleObject

impl Debug for HTTP_PROTECTION_LEVEL_TYPE

impl Debug for MSV1_0_CHANGEPASSWORD_RESPONSE

impl Debug for KERB_CERTIFICATE_S4U_LOGON

impl Debug for KDHELP64

impl Debug for HTTP_HEADER_ID

impl Debug for ISpPhrase2

impl Debug for IDXGIOutput2

impl Debug for DISPID_SpeechPhraseProperty

impl Debug for DISPIDSPRG

impl Debug for ANON_OBJECT_HEADER_BIGOBJ

impl Debug for D2D1_OPACITY_MASK_CONTENT

impl Debug for DXGI_FORMAT

impl Debug for HID_DRIVER_CONFIG

impl Debug for D3D11_VIDEO_PROCESSOR_STEREO_CAPS

impl Debug for D3D11_QUERY_DATA_TIMESTAMP_DISJOINT

impl Debug for CREATESTRUCTA

impl Debug for D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_OUTPUT

impl Debug for ISpRecoGrammar

impl Debug for DFS_INFO_7

impl Debug for USER_INFO_1007

impl Debug for SP_DEVICE_INTERFACE_DETAIL_DATA_W

impl Debug for KERB_LOGON_SUBMIT_TYPE

impl Debug for D3DCOMPILER_STRIP_FLAGS

impl Debug for RO_ERROR_REPORTING_FLAGS

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_INPUT

impl Debug for RATE_QUOTA_LIMIT

impl Debug for HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS

impl Debug for DFS_INFO_105

impl Debug for SecPkgCred_SupportedAlgs

impl Debug for RPC_SECURITY_QOS_V3_W_union

impl Debug for D3D12_TEXCUBE_SRV

impl Debug for EXCEPTION_RECORD

impl Debug for EVT_VARIANT

impl Debug for ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA

impl Debug for HTTP_PROTECTION_LEVEL_INFO

impl Debug for ID2D1TessellationSink

impl Debug for MSV1_0_AV_PAIR

impl Debug for ISpeechObjectTokens

impl Debug for TRUSTED_DOMAIN_INFORMATION_EX2

impl Debug for D3D_SHADER_VARIABLE_FLAGS

impl Debug for SecPkgCredentials_NamesA

impl Debug for SecPkgCredentials_Cert

impl Debug for D3D12_INPUT_LAYOUT_DESC

impl Debug for ACCESS_LIST

impl Debug for IFileIsInUse

impl Debug for CRYPTCATMEMBER

impl Debug for D3D11_BIND_FLAG

impl Debug for ISpStreamFormatConverter

impl Debug for SecPkgContext_NamesA

impl Debug for IShellFolder

impl Debug for WICGifImageDescriptorProperties

impl Debug for DOCINFOA

impl Debug for HTTP_SERVICE_CONFIG_ID

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_INPUT

impl Debug for D3DVSHADERCAPS2_0

impl Debug for IShellExtInit

impl Debug for CLEAR_BLOCK

impl Debug for ID3D11ShaderReflection

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_INPUT

impl Debug for SecPkgContext_AccessToken

impl Debug for VSS_RESTORE_TYPE

impl Debug for LSA_AUTH_INFORMATION

impl Debug for COLORSCHEME

impl Debug for D3D12_MESSAGE

impl Debug for D3D12_FEATURE_DATA_FEATURE_LEVELS

impl Debug for RPC_SECURITY_QOS_V2_W_union

impl Debug for DISCDLGSTRUCTW

impl Debug for WICBitmapTransformOptions

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGUREUNCOMPRESSEDENCRYPTION

impl Debug for CONSOLE_HISTORY_INFO

impl Debug for D3D_SHADER_INPUT_TYPE

impl Debug for D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT

impl Debug for D3D12_HEAP_FLAGS

impl Debug for PRINTER_OPTIONSW

impl Debug for IInternetSecurityManager

impl Debug for CACHE_DESCRIPTOR

impl Debug for D3D12_RESOURCE_BARRIER_FLAGS

impl Debug for NMCUSTOMDRAW

impl Debug for USER_INFO_1052

impl Debug for ID3D11DeviceContext

impl Debug for BCRYPT_PSS_PADDING_INFO

impl Debug for CRYPT_CSP_PROVIDER

impl Debug for NETLOGON_INFO_1

impl Debug for LSA_FOREST_TRUST_COLLISION_RECORD_TYPE

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_VertexBuffer

impl Debug for IVssComponentEx2

impl Debug for NETLOGON_NETWORK_INFO

impl Debug for D3D11_TEX1D_ARRAY_DSV

impl Debug for SAFEARR_DISPATCH

impl Debug for DWRITE_HIT_TEST_METRICS

impl Debug for SECURITY_ATTRIBUTES

impl Debug for HD_TEXTFILTERA

impl Debug for WSAPROTOCOLCHAIN

impl Debug for KNONVOLATILE_CONTEXT_POINTERS_u2

impl Debug for WORD_SIZEDARR

impl Debug for WICPixelFormatNumericRepresentation

impl Debug for CRED_PROTECTION_TYPE

impl Debug for IContextMenu3

impl Debug for IVssComponent

impl Debug for servent

impl Debug for D2D1_TEXT_ANTIALIAS_MODE

impl Debug for SESSION_BUFFER

impl Debug for HTTP_BINDING_INFO

impl Debug for LSA_ENUMERATION_INFORMATION

impl Debug for RPC_SECURITY_QOS_V4_W_union

impl Debug for CPINFO

impl Debug for DFS_INFO_107

impl Debug for ID3D12Device

impl Debug for LVINSERTMARK

impl Debug for TRUSTED_DOMAIN_NAME_INFO

impl Debug for KEYBDINPUT

impl Debug for TVHITTESTINFO

impl Debug for USB_INTERFACE_DESCRIPTOR

impl Debug for IDataTransferManagerInterop

impl Debug for SPWORD

impl Debug for IDWriteTextFormat

impl Debug for PSS_QUERY_INFORMATION_CLASS

impl Debug for SEC_WINNT_AUTH_DATA

impl Debug for SecPkgContext_SubjectAttributes

impl Debug for DFS_TARGET_PRIORITY_CLASS

impl Debug for D2D1_ARC_SIZE

impl Debug for SQL_YEAR_MONTH_STRUCT

impl Debug for D3DDEBUGMONITORTOKENS

impl Debug for MMTIME_smpte

impl Debug for D3D12_COMMAND_QUEUE_PRIORITY

impl Debug for D3DSHADEMODE

impl Debug for CONSOLE_SELECTION_INFO

impl Debug for CERT_SERVER_OCSP_RESPONSE_CONTEXT

impl Debug for COMSTAT

impl Debug for SPEAKFLAGS

impl Debug for TrustLevel

impl Debug for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_NumaNode

impl Debug for IAudioRenderClient

impl Debug for MSV1_0_CHANGEPASSWORD_REQUEST

impl Debug for NMITEMACTIVATE

impl Debug for ID3D11VideoProcessor

impl Debug for NETLOGON_INFO_3

impl Debug for KERB_BINDING_CACHE_ENTRY_DATA

impl Debug for POLICY_INFORMATION_CLASS

impl Debug for CONNECTION_RESOURCE

impl Debug for D3D11_COMPARISON_FUNC

impl Debug for ID3D11DeviceChild

impl Debug for WSAQUERYSETW

impl Debug for D3D12_DEPTH_STENCIL_VALUE

impl Debug for D3D_NAME

impl Debug for ACTION_HEADER

impl Debug for FILE_INFO_BY_HANDLE_CLASS

impl Debug for DWRITE_PARAGRAPH_ALIGNMENT

impl Debug for LVBKIMAGEW

impl Debug for ISpRecoResult

impl Debug for ADAPTER_STATUS

impl Debug for IIOCancelInformation

impl Debug for ISpContainerLexicon

impl Debug for IWICBitmapScaler

impl Debug for D3D12_INFO_QUEUE_FILTER_DESC

impl Debug for PRINTDLGEXW

impl Debug for D2D1_CAP_STYLE

impl Debug for D3D11_AUTHENTICATED_QUERY_ACESSIBILITY_OUTPUT

impl Debug for IAssocHandlerInvoker

impl Debug for D2D1_DASH_STYLE

impl Debug for ID3D11ShaderReflectionVariable

impl Debug for D3D11_TEX2D_ARRAY_VPOV

impl Debug for DXGI_MODE_DESC

impl Debug for TASKDIALOG_ELEMENTS

impl Debug for REASON_CONTEXT

impl Debug for UNIVERSAL_NAME_INFOW

impl Debug for SecPkgCred_ClientCertPolicy

impl Debug for TP_TIMER

impl Debug for POLICY_AUDIT_EVENT_TYPE

impl Debug for POWER_REQUEST_TYPE

impl Debug for SCROLLBARINFO

impl Debug for DHPRIVKEY_VER3

impl Debug for SMALL_RECT

impl Debug for SPVFEATURE

impl Debug for IMAGE_FUNCTION_ENTRY64

impl Debug for WINHTTP_ASYNC_RESULT

impl Debug for D3DDISPLAYROTATION

impl Debug for D3D11_DEPTH_STENCIL_VIEW_DESC

impl Debug for DISPID_SpeechPhraseElements

impl Debug for DISPID_SpeechLexiconPronunciation

impl Debug for CHANGEFILTERSTRUCT

impl Debug for SEC_WINNT_AUTH_CERTIFICATE_DATA

impl Debug for IStartMenuPinnedList

impl Debug for DISPID_SpeechRecoResultTimes

impl Debug for ISpeechObjectToken

impl Debug for NMTVCUSTOMDRAW

impl Debug for D3D12_INPUT_CLASSIFICATION

impl Debug for D3D11_MAP_FLAG

impl Debug for D3D12_ROOT_CONSTANTS

impl Debug for BCRYPT_ALGORITHM_IDENTIFIER

impl Debug for IMAGE_RUNTIME_FUNCTION_ENTRY

impl Debug for IVssComponentEx

impl Debug for D3D12_TEX2DMS_SRV

impl Debug for HTTP_LOG_DATA_TYPE

impl Debug for D3D12_INDIRECT_ARGUMENT_TYPE

impl Debug for SecPkgContext_AuthzID

impl Debug for SecPkgContext_NegotiationInfoA

impl Debug for TTTOOLINFOW

impl Debug for D3D11_PARAMETER_DESC

impl Debug for APTTYPE

impl Debug for FILE_DISPOSITION_INFO

impl Debug for SPSHORTCUTPAIRLIST

impl Debug for D3DSTATEBLOCKTYPE

impl Debug for SpeechVoiceEvents

impl Debug for D3D12_ROOT_PARAMETER

impl Debug for ELEMDESC

impl Debug for ID3D11InputLayout

impl Debug for IPrintDialogCallback

impl Debug for DSROLE_UPGRADE_STATUS_INFO

impl Debug for D3D11_FEATURE_DATA_D3D11_OPTIONS

impl Debug for D3D11_TEX1D_ARRAY_RTV

impl Debug for SpeechVisemeType

impl Debug for TVGETITEMPARTRECTINFO

impl Debug for NTFS_FILE_RECORD_INPUT_BUFFER

impl Debug for DFS_INFO_104

impl Debug for D3D11_COUNTER_DESC

impl Debug for D2D1_BEZIER_SEGMENT

impl Debug for D3D_INTERPOLATION_MODE

impl Debug for RETRIEVAL_POINTERS_BUFFER

impl Debug for ID3D11DepthStencilView

impl Debug for D3D11_AES_CTR_IV

impl Debug for WSASERVICECLASSINFOA

impl Debug for ISpPhoneConverter

impl Debug for D3DPATCHEDGESTYLE

impl Debug for DRAGLISTINFO

impl Debug for PRINTER_DEFAULTSW

impl Debug for MSV1_0_SUBAUTH_REQUEST

impl Debug for SC_STATUS_TYPE

impl Debug for IDXGIFactory3

impl Debug for DMA_RANGE

impl Debug for LIST_ENTRY

impl Debug for D3DPOOL

impl Debug for KERB_CERTIFICATE_HASHINFO

impl Debug for RGBQUAD

impl Debug for SPVACTIONS

impl Debug for CERT_NAME_INFO

impl Debug for XINPUT_KEYSTROKE

impl Debug for NMHEADERW

impl Debug for HIDD_CONFIGURATION

impl Debug for SOCKADDR

impl Debug for IMAGEHLP_LINEW64

impl Debug for DISPID_SpeechObjectTokenCategory

impl Debug for UMS_SYSTEM_THREAD_INFORMATION

impl Debug for FILEPATHS_SIGNERINFO_A

impl Debug for KERB_CHANGEPASSWORD_REQUEST

impl Debug for ID3D11Asynchronous

impl Debug for ID3D11VideoProcessorEnumerator

impl Debug for COPYFILE2_MESSAGE_ChunkFinished

impl Debug for MODLOAD_DATA

impl Debug for COPYFILE2_MESSAGE_StreamStarted

impl Debug for SPSERIALIZEDRESULT

impl Debug for IDirect3DCryptoSession9

impl Debug for WSAQUERYSET2W

impl Debug for NMTBDISPINFOA

impl Debug for SLIST_HEADER_HeaderX64

impl Debug for BCRYPT_RSAKEY_BLOB

impl Debug for UUID_VECTOR

impl Debug for PDH_COUNTER_PATH_ELEMENTS_A

impl Debug for D3D11_SHADER_TYPE_DESC

impl Debug for SPGRAMMARWORDTYPE

impl Debug for IDWriteTextLayout

impl Debug for PRINTER_DEFAULTSA

impl Debug for NMTBDISPINFOW

impl Debug for ISpSerializeState

impl Debug for D3D12_DESCRIPTOR_HEAP_TYPE

impl Debug for FLOWSPEC

impl Debug for DXGI_SURFACE_DESC

impl Debug for GUID

impl Debug for HIDD_ATTRIBUTES

impl Debug for GROUP_AFFINITY

impl Debug for SCRIPT_GLYPHPROP

impl Debug for ID3D11Linker

impl Debug for FDE_SHAREVIOLATION_RESPONSE

impl Debug for WCRANGE

impl Debug for CRYPT_ENCRYPTED_PRIVATE_KEY_INFO

impl Debug for SPWORDTYPE

impl Debug for D3D12_INDEX_BUFFER_STRIP_CUT_VALUE

impl Debug for D3D11_FEATURE_DATA_MARKER_SUPPORT

impl Debug for COPYFILE2_MESSAGE_TYPE

impl Debug for WSACOMPLETION_Port

impl Debug for PRINTPAGERANGE

impl Debug for D3D12_QUERY_HEAP_DESC

impl Debug for SPRULESTATE

impl Debug for POLICY_AUDIT_FULL_SET_INFO

impl Debug for KERB_SMART_CARD_PROFILE

impl Debug for D3DMULTISAMPLE_TYPE

impl Debug for D3D12_TEXTURE_ADDRESS_MODE

impl Debug for SOURCE_MEDIA_W

impl Debug for ISpGrammarBuilder2

impl Debug for D3D11_VIDEO_DECODER_BUFFER_DESC

impl Debug for IOpenControlPanel

impl Debug for D3DAES_CTR_IV

impl Debug for D3D11_VIDEO_DECODER_EXTENSION

impl Debug for PNP_VETO_TYPE

impl Debug for ISpEnginePronunciation

impl Debug for D3D12_RESOURCE_BINDING_TIER

impl Debug for VSS_RESTOREMETHOD_ENUM

impl Debug for _CONTEXT

impl Debug for BUTTON_SPLITINFO

impl Debug for DXGI_OUTDUPL_POINTER_SHAPE_INFO

impl Debug for ID3D11Texture1D

impl Debug for NMHDFILTERBTNCLICK

impl Debug for BCRYPT_INTERFACE_VERSION

impl Debug for KERB_QUERY_S4U2PROXY_CACHE_REQUEST

impl Debug for ID2D1RoundedRectangleGeometry

impl Debug for ISpNotifySink

impl Debug for BITMAPV5HEADER

impl Debug for SPPHRASEPROPERTY

impl Debug for IMAGE_FUNCTION_ENTRY

impl Debug for PROCESS_MITIGATION_POLICY

impl Debug for SHELL_UI_COMPONENT

impl Debug for D3D11_FILTER_REDUCTION_TYPE

impl Debug for D3DDEVINFO_VCACHE

impl Debug for GROUP_INFO_0

impl Debug for IApplicationDestinations

impl Debug for D3D12_TILE_COPY_FLAGS

impl Debug for IDXGIOutput3

impl Debug for ID3D11Device

impl Debug for ID3D11FunctionParameterReflection

impl Debug for ID3D11VideoDecoderOutputView

impl Debug for FILETIME

impl Debug for NEGOTIATE_CALLER_NAME_REQUEST

impl Debug for D3D12_CPU_PAGE_PROPERTY

impl Debug for SPINTERFERENCE

impl Debug for VSS_SNAPSHOT_PROP

impl Debug for POLICY_AUDIT_SUBCATEGORIES_INFO

impl Debug for CENTRAL_ACCESS_POLICY

impl Debug for SPBOOKMARKOPTIONS

impl Debug for FIND_NAME_BUFFER

impl Debug for D2D1_DRAW_TEXT_OPTIONS

impl Debug for IDWriteBitmapRenderTarget

impl Debug for KERB_DECRYPT_REQUEST

impl Debug for ISpPhrase

impl Debug for D3D11_TEX3D_RTV

impl Debug for NEGOTIATE_PACKAGE_PREFIXES

impl Debug for ISpStreamFormat

impl Debug for ID2D1DCRenderTarget

impl Debug for MINMAXINFO

impl Debug for POWER_ACTION

impl Debug for D3DRANGE

impl Debug for D3D11_COUNTER

impl Debug for SecPkgContext_PasswordExpiry

impl Debug for POLICY_DEFAULT_QUOTA_INFO

impl Debug for D3D12_COMMAND_SIGNATURE_DESC

impl Debug for IVssCreateWriterMetadata

impl Debug for KERB_EXTERNAL_NAME

impl Debug for RAWINPUTDEVICE

impl Debug for ILaunchSourceAppUserModelId

impl Debug for IFrameworkInputPane

impl Debug for TP_WAIT

impl Debug for RPC_BINDING_HANDLE_SECURITY_V1_A

impl Debug for D3D11_FEATURE_DATA_SHADER_MIN_PRECISION_SUPPORT

impl Debug for IDataObjectProvider

impl Debug for SpeechDataKeyLocation

impl Debug for D3D12_SHADER_VERSION_TYPE

impl Debug for ICommDlgBrowser2

impl Debug for D3D12_BUFFER_SRV_FLAGS

impl Debug for SCARD_T1_REQUEST

impl Debug for SetupFileLogInfo

impl Debug for FILE_STANDARD_INFO

impl Debug for RTL_CONDITION_VARIABLE

impl Debug for IDirect3DSwapChain9Ex

impl Debug for D3D12_TILE_REGION_SIZE

impl Debug for CM_NOTIFY_ACTION

impl Debug for D3D12_FEATURE_DATA_ARCHITECTURE

impl Debug for D3D12_SHADER_MIN_PRECISION_SUPPORT

impl Debug for IDXGIDevice3

impl Debug for D3D12_BOX

impl Debug for D3D_BLOB_PART

impl Debug for IExplorerBrowserEvents

impl Debug for D3D11_FILTER_TYPE

impl Debug for D3D11_VIDEO_COLOR_RGBA

impl Debug for CREDUI_INFOW

impl Debug for DSBCAPS

impl Debug for D3D11_TEX2D_DSV

impl Debug for RAWINPUTDEVICELIST

impl Debug for D3D12_DEBUG_FEATURE

impl Debug for D3D11_MAPPED_SUBRESOURCE

impl Debug for LSA_TRUST_INFORMATION

impl Debug for ADDRESS_MODE

impl Debug for IAppVisibilityEvents

impl Debug for D3DBOX

impl Debug for OFNOTIFYEXW

impl Debug for D3D11_VIDEO_DECODER_CONFIG

impl Debug for USER_MODALS_INFO_1005

impl Debug for D3D12_RESOURCE_HEAP_TIER

impl Debug for MIDIOUTCAPSW

impl Debug for D3D12_ROOT_DESCRIPTOR

impl Debug for ID3D10ShaderReflection

impl Debug for D3DSTENCILOP

impl Debug for CRYPT_KEY_PROV_PARAM

impl Debug for IShellFolder2

impl Debug for RPC_SECURITY_QOS_V5_W_union

impl Debug for IActionProgress

impl Debug for SpeechAudioState

impl Debug for COLORADJUSTMENT

impl Debug for D3D11_RENDER_TARGET_BLEND_DESC

impl Debug for ID3D12DeviceChild

impl Debug for USER_ACTIVITY_PRESENCE

impl Debug for IDXGIOutput

impl Debug for RPC_SECURITY_QOS_V5_W

impl Debug for NETLOGON_LOGON_IDENTITY_INFO

impl Debug for TP_CLEANUP_GROUP

impl Debug for HYPER_SIZEDARR

impl Debug for NMTREEVIEWA

impl Debug for D3D11_TEX2D_VPIV

impl Debug for DXGI_RGB

impl Debug for MONITORINFOEXA

impl Debug for SCRIPT_CONTROL

impl Debug for D2D1_BITMAP_PROPERTIES

impl Debug for SecPkgCredentials_SSIProviderW

impl Debug for IAutoCompleteDropDown

impl Debug for SecPkgContext_EarlyStart

impl Debug for D3DFOGMODE

impl Debug for WER_REGISTER_FILE_TYPE

impl Debug for IFolderFilter

impl Debug for CREDENTIALW

impl Debug for VARFLAGS

impl Debug for SID_NAME_USE

impl Debug for D2D_MATRIX_4X4_F

impl Debug for GLYPHMETRICSFLOAT

impl Debug for BITMAPINFOHEADER

impl Debug for WICJpegLuminanceProperties

impl Debug for MEM_LARGE_RESOURCE

impl Debug for D3D_SHADER_VARIABLE_CLASS

impl Debug for ISpeechAudioStatus

impl Debug for TBADDBITMAP

impl Debug for KERB_SETPASSWORD_EX_REQUEST

impl Debug for REBARBANDINFOA

impl Debug for SPLEXICONTYPE

impl Debug for NMREBARCHILDSIZE

impl Debug for KERB_PURGE_KDC_PROXY_CACHE_RESPONSE

impl Debug for IDirect3DStateBlock9

impl Debug for IDWriteFontFace

impl Debug for RSAPUBKEY

impl Debug for D3DQUERYTYPE

impl Debug for IMMDevice

impl Debug for DEVPRIVATE_RESOURCE

impl Debug for NMTVKEYDOWN

impl Debug for HTTP_TRANSPORT_ADDRESS

impl Debug for COPYFILE2_MESSAGE

impl Debug for RASTERIZER_STATUS

impl Debug for CTL_INFO

impl Debug for XFORM

impl Debug for D3D12_INFO_QUEUE_FILTER

impl Debug for INamespaceWalkCB2

impl Debug for HTTP_SERVICE_CONFIG_URLACL_SET

impl Debug for USER_INFO_1013

impl Debug for D3D11_BLEND_OP

impl Debug for GLYPHMETRICS

impl Debug for CRYPT_ATTRIBUTES

impl Debug for IDeskBand2

impl Debug for PSAPI_WORKING_SET_BLOCK

impl Debug for SEC_WINNT_AUTH_SHORT_VECTOR

impl Debug for WICBitmapAlphaChannelOption

impl Debug for APTTYPEQUALIFIER

impl Debug for MCHITTESTINFO

impl Debug for IPreviewHandlerVisuals

impl Debug for DESIGNVECTOR

impl Debug for HTTP_SERVICE_CONFIG_SSL_SET

impl Debug for NMDATETIMECHANGE

impl Debug for OUTPUT_DEBUG_STRING_INFO

impl Debug for CUSTDATAITEM

impl Debug for DXGI_MODE_SCANLINE_ORDER

impl Debug for IViewStateIdentityItem

impl Debug for NETRESOURCEA

impl Debug for SPGRAMMAROPTIONS

impl Debug for IKnownFolderManager

impl Debug for HTTP_DATA_CHUNK

impl Debug for HTTP_SSL_CLIENT_CERT_INFO

impl Debug for IMAGE_FILE_HEADER

impl Debug for DISPID_SpeechPhraseBuilder

impl Debug for ID3D11FunctionLinkingGraph

impl Debug for HTTP_DATA_CHUNK_FromFragmentCache

impl Debug for WICBitmapPattern

impl Debug for D3D12_LOGIC_OP

impl Debug for VSS_RESTORE_TARGET

impl Debug for USER_INFO_1053

impl Debug for ID2D1RenderTarget

impl Debug for DFS_SUPPORTED_NAMESPACE_VERSION_INFO

impl Debug for D3DSAMPLER_TEXTURE_TYPE

impl Debug for IPreviousVersionsInfo

impl Debug for PROCESS_DPI_AWARENESS

impl Debug for SP_INSTALLWIZARD_DATA

impl Debug for NMTVDISPINFOEXA

impl Debug for READER_SEL_REQUEST_MATCH_TYPE

impl Debug for RID_DEVICE_INFO_MOUSE

impl Debug for WICPlanarOptions

impl Debug for D2D1_SWEEP_DIRECTION

impl Debug for NET_VALIDATE_PASSWORD_HASH

impl Debug for SPEVENTEX

impl Debug for D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC

impl Debug for IDirect3DVertexDeclaration9

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_ACCESSIBLE_ENCRYPTION_INPUT

impl Debug for SCARD_T0_COMMAND

impl Debug for WSASERVICECLASSINFOW

impl Debug for SpeechInterference

impl Debug for OLD_LARGE_INTEGER

impl Debug for D3D11_ASYNC_GETDATA_FLAG

impl Debug for PROCESS_HEAP_ENTRY_Block

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_ConstantBufferView

impl Debug for SICHINTF

impl Debug for IMarkupCallback

impl Debug for ID3D11RasterizerState

impl Debug for FILE_NAME_INFO

impl Debug for SAFEARR_VARIANT

impl Debug for SecPkgContext_CredentialNameW

impl Debug for LVITEMW

impl Debug for SPVALUETYPE

impl Debug for HDLAYOUT

impl Debug for TIMESTAMP_STRUCT

impl Debug for IWICPalette

impl Debug for D3D12_TEX3D_RTV

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_OUTPUT

impl Debug for FONTSIGNATURE

impl Debug for IFileDialog2

impl Debug for DWRITE_TYPOGRAPHIC_FEATURES

impl Debug for LSA_STRING

impl Debug for SP_FILE_COPY_PARAMS_A

impl Debug for EVT_VARIANT_TYPE

impl Debug for D3D11_VIDEO_DECODER_DESC

impl Debug for LSA_FOREST_TRUST_RECORD_TYPE

impl Debug for KERB_QUERY_TKT_CACHE_RESPONSE

impl Debug for D3D11_SHADER_RESOURCE_VIEW_DESC

impl Debug for ServerInformation

impl Debug for ISpRecognizer3

impl Debug for DISPID_SpeechRecognizerStatus

impl Debug for SCHANNEL_CERT_HASH

impl Debug for SYSTEMTIME

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_INPUT

impl Debug for D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES

impl Debug for SPRULE

impl Debug for TTHITTESTINFOA

impl Debug for WICBitmapDitherType

impl Debug for NMCOMBOBOXEXA

impl Debug for MSV1_0_INTERACTIVE_LOGON

impl Debug for LOADED_IMAGE

impl Debug for CERT_OR_CRL_BLOB

impl Debug for ICustomDestinationList

impl Debug for KERB_QUERY_TKT_CACHE_EX3_RESPONSE

impl Debug for PROC_THREAD_ATTRIBUTE_LIST

impl Debug for D2D1_ARC_SEGMENT

impl Debug for IDWriteTextAnalysisSource

impl Debug for IO_COUNTERS

impl Debug for D3DCLIPSTATUS9

impl Debug for CURRENCYFMTW

impl Debug for KERB_CERTIFICATE_INFO_TYPE

impl Debug for DFS_INFO_200

impl Debug for HTTP_SERVICE_BINDING_TYPE

impl Debug for IEnumIDList

impl Debug for IDirect3DDevice9

impl Debug for IDWriteTextAnalyzer

impl Debug for CREATEFILE2_EXTENDED_PARAMETERS

impl Debug for USB_DEVICE_SPEED

impl Debug for IInitializeWithPropertyStore

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_V2_A

impl Debug for PSS_WALK_INFORMATION_CLASS

impl Debug for ADDRINFOW

impl Debug for KERB_TICKET_CACHE_INFO_EX2

impl Debug for TVITEMEXA

impl Debug for DFS_INFO_106

impl Debug for RGNDATAHEADER

impl Debug for NMDATETIMESTRINGW

impl Debug for NMTVGETINFOTIPW

impl Debug for USER_INFO_1020

impl Debug for VOLUME_DISK_EXTENTS

impl Debug for VSS_SNAPSHOT_PROPERTY_ID

impl Debug for SCARD_IO_REQUEST

impl Debug for HEAP_SUMMARY

impl Debug for WSATHREADID

impl Debug for ID2D1StrokeStyle

impl Debug for MSV1_0_SUPPLEMENTAL_CREDENTIAL

impl Debug for D3D11_LIBRARY_DESC

impl Debug for IOpenSearchSource

impl Debug for DWRITE_RENDERING_MODE

impl Debug for DISPID_SpeechGrammarRuleStateTransition

impl Debug for SP_REGISTER_CONTROL_STATUSW

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUIDCOUNT_OUTPUT

impl Debug for D3DPRESENTSTATS

impl Debug for VSS_OBJECT_TYPE

impl Debug for RPC_PROTSEQ_VECTORW

impl Debug for DISPID_SpeechRecoResult2

impl Debug for SLIST_HEADER

impl Debug for TP_WORK

impl Debug for D3DSURFACE_DESC

impl Debug for WICSectionAccessLevel

impl Debug for HTTP_SERVER_PROPERTY

impl Debug for HTTP_BYTE_RANGE

impl Debug for IDWriteTextAnalysisSink

impl Debug for KERB_CRYPTO_KEY32

impl Debug for HTTP_PROPERTY_FLAGS

impl Debug for ISpEventSource2

impl Debug for UNICODE_STRING

impl Debug for PBRANGE

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE_INPUT

impl Debug for HTTP_SERVICE_CONFIG_SSL_PARAM

impl Debug for CERT_PHYSICAL_STORE_INFO

impl Debug for D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE

impl Debug for HTTP_LOG_DATA

impl Debug for D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS

impl Debug for DXGI_SWAP_EFFECT

impl Debug for MSA_INFO_STATE

impl Debug for D3D11_SO_DECLARATION_ENTRY

impl Debug for D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE

impl Debug for LUID

impl Debug for SAFEARR_HAVEIID

impl Debug for D3D11_FEATURE_DATA_ARCHITECTURE_INFO

impl Debug for IFolderBandPriv

impl Debug for ID3D11ComputeShader

impl Debug for IDWriteLocalFontFileLoader

impl Debug for WICBitmapPaletteType

impl Debug for IDWriteInlineObject

impl Debug for PROCESS_HEAP_ENTRY_Region

impl Debug for ISpEventSource

impl Debug for ICommDlgBrowser

impl Debug for D3D12_BLEND

impl Debug for POLICY_AUDIT_LOG_INFO

impl Debug for DWRITE_TEXT_METRICS

impl Debug for D3DDEVICE_CREATION_PARAMETERS

impl Debug for DWRITE_SHAPING_GLYPH_PROPERTIES

impl Debug for DWRITE_OVERHANG_METRICS

impl Debug for D3D11_VPOV_DIMENSION

impl Debug for DFS_INFO_6

impl Debug for ITypeMarshal

impl Debug for WSANSCLASSINFOW

impl Debug for RPC_POLICY

impl Debug for FUNCDESC

impl Debug for ISpProperties

impl Debug for SecPkgInfoW

impl Debug for INPUT_RECORD

impl Debug for SECURITY_STRING

impl Debug for CERT_REVOCATION_CRL_INFO

impl Debug for D3D12_DRAW_INDEXED_ARGUMENTS

impl Debug for D3DDISPLAYMODEEX

impl Debug for ID3DInclude

impl Debug for CONSOLE_FONT_INFOEX

impl Debug for IRQ_DES_64

impl Debug for IDirect3DVertexBuffer9

impl Debug for USER_INFO_1005

impl Debug for DISK_EXTENT

impl Debug for WINDOW_BUFFER_SIZE_RECORD

impl Debug for SPRECOGNIZERSTATUS

impl Debug for D3DRESOURCESTATS

impl Debug for WICPngHistProperties

impl Debug for ACTCTXA

impl Debug for D3D12_DEPTH_STENCIL_VIEW_DESC

impl Debug for GRADIENT_RECT

impl Debug for D2D_VECTOR_2F

impl Debug for JOBOBJECT_BASIC_PROCESS_ID_LIST

impl Debug for D3D12_SUBRESOURCE_FOOTPRINT

impl Debug for MENU_EVENT_RECORD

impl Debug for D3D12_TEX2DMS_RTV

impl Debug for D3D12_COMMAND_QUEUE_FLAGS

impl Debug for IDelegateItem

impl Debug for CONSOLE_FONT_INFO

impl Debug for IExplorerCommand

impl Debug for RPC_BINDING_VECTOR

impl Debug for ICDBurn

impl Debug for IDeskBand

impl Debug for SCARD_T0_REQUEST

impl Debug for ID2D1BitmapRenderTarget

impl Debug for D3D12_RESOURCE_BARRIER

impl Debug for CRYPT_CONTEXT_FUNCTION_CONFIG

impl Debug for IDWriteFactory

impl Debug for WSABUF

impl Debug for DWRITE_TEXT_RANGE

impl Debug for DXGI_SCALING

impl Debug for NMVIEWCHANGE

impl Debug for IDirect3DVolume9

impl Debug for PIXELFORMATDESCRIPTOR

impl Debug for FIND_NAME_HEADER

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYINFOBUSTYPE_OUTPUT

impl Debug for WINHTTP_AUTOPROXY_OPTIONS

impl Debug for DFS_INFO_101

impl Debug for PSAPI_WS_WATCH_INFORMATION

impl Debug for IRelatedItem

impl Debug for D3D11_FEATURE_DATA_THREADING

impl Debug for WICPngSrgbProperties

impl Debug for ERROR_LOG

impl Debug for IExecuteCommandHost

impl Debug for ILaunchTargetViewSizePreference

impl Debug for GROUP_USERS_INFO_1

impl Debug for DWRITE_MATRIX

impl Debug for CONSOLE_SCREEN_BUFFER_INFO

impl Debug for TVINSERTSTRUCTW

impl Debug for IActivationFactory

impl Debug for D3D11_CLASS_INSTANCE_DESC

impl Debug for IDWriteLocalizedStrings

impl Debug for GET_FILEEX_INFO_LEVELS

impl Debug for IRQ_RANGE

impl Debug for WSAVERSION

impl Debug for IDirect3DSurface9

impl Debug for D3D12_CLEAR_VALUE

impl Debug for D3D12_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT

impl Debug for CREDUI_INFOA

impl Debug for IMAGEINFO

impl Debug for DXGI_DISPLAY_COLOR_SPACE

impl Debug for SecHandle

impl Debug for CRL_ENTRY

impl Debug for D3DCUBEMAP_FACES

impl Debug for SQLINTERVAL

impl Debug for SPCONTEXTSTATE

impl Debug for IApplicationDesignModeSettings2

impl Debug for IDWriteNumberSubstitution

impl Debug for D3D11_VIEWPORT

impl Debug for SecPkgCred_CipherStrengths

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_PROTECTION_INPUT

impl Debug for COMPARTMENT_ID

impl Debug for IWICBitmapClipper

impl Debug for IPreviewHandlerFrame

impl Debug for IDWriteFontFamily

impl Debug for WICPngItxtProperties

impl Debug for COMMTIMEOUTS

impl Debug for CRYPT_AES_256_KEY_STATE

impl Debug for SPCOMMITFLAGS

impl Debug for IExplorerBrowser

impl Debug for CREDENTIAL_ATTRIBUTEA

impl Debug for IDirect3DIndexBuffer9

impl Debug for D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC

impl Debug for SPWORDLIST

impl Debug for SP_REGISTER_CONTROL_STATUSA

impl Debug for ID3D11ClassInstance

impl Debug for DECIMAL

impl Debug for VALENTA

impl Debug for ID2D1TransformedGeometry

impl Debug for REMOTE_NAME_INFOA

impl Debug for IDXGIAdapter2

impl Debug for D3DMATERIAL9

impl Debug for NMLVKEYDOWN

impl Debug for POLICY_DNS_DOMAIN_INFO

impl Debug for D3D12_SUBRESOURCE_TILING

impl Debug for HEAPLIST32

impl Debug for SecPkgCredentials_NamesW

impl Debug for FILE_END_OF_FILE_INFO

impl Debug for D3D12_STATIC_SAMPLER_DESC

impl Debug for DOCINFOW

impl Debug for ID2D1GdiInteropRenderTarget

impl Debug for ISpRecoContext2

impl Debug for D3D12_CROSS_NODE_SHARING_TIER

impl Debug for D3D11_VIDEO_PROCESSOR_STEREO_FLIP_MODE

impl Debug for PSAPI_WORKING_SET_INFORMATION

impl Debug for CERT_RDN

impl Debug for NMREBARCHEVRON

impl Debug for D3D12_DRAW_ARGUMENTS

impl Debug for IInspectable

impl Debug for NMTOOLBARW

impl Debug for DWRITE_FLOW_DIRECTION

impl Debug for D3D11_COUNTER_INFO

impl Debug for D2D_POINT_2F

impl Debug for RBHITTESTINFO

impl Debug for D3D11_RESOURCE_MISC_FLAG

impl Debug for ABCFLOAT

impl Debug for D3D12_SUBRESOURCE_INFO

impl Debug for EXTLOGPEN

impl Debug for POLICY_AUDIT_FULL_QUERY_INFO

impl Debug for IDXGISwapChain

impl Debug for D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS

impl Debug for D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS

impl Debug for IDirect3DSwapChain9

impl Debug for D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_INPUT

impl Debug for ID3D12ShaderReflectionConstantBuffer

impl Debug for D3D11_TEX2DMS_RTV

impl Debug for LOCALGROUP_MEMBERS_INFO_2

impl Debug for D3DOVERLAYCAPS

impl Debug for NETLOGON_INTERACTIVE_INFO

impl Debug for SPPHRASEELEMENT

impl Debug for ISpAudio

impl Debug for TVINSERTSTRUCTA

impl Debug for D3DFILLMODE

impl Debug for IQueryCancelAutoPlay

impl Debug for D3DLOCKED_RECT

impl Debug for D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE_OUTPUT

impl Debug for D3DSHADER_MISCTYPE_OFFSETS

impl Debug for KDC_PROXY_CACHE_ENTRY_DATA

impl Debug for NMHDDISPINFOA

impl Debug for IControlMarkup

impl Debug for D3D12_QUERY_HEAP_TYPE

impl Debug for USER_MODALS_INFO_1002

impl Debug for WSAQUERYSET2A

impl Debug for IShellView

impl Debug for USER_INFO_20

impl Debug for SCRIPT_PROPERTIES

impl Debug for WICGifLogicalScreenDescriptorProperties

impl Debug for NMTVASYNCDRAW

impl Debug for LVFINDINFOW

impl Debug for RAWINPUT

impl Debug for DFS_NAMESPACE_VERSION_ORIGIN

impl Debug for TVITEMA

impl Debug for DXGI_SHARED_RESOURCE

impl Debug for D3DTEXTUREFILTERTYPE

impl Debug for IVssExamineWriterMetadataEx2

impl Debug for CERT_SIMPLE_CHAIN

impl Debug for IFolderViewHost

impl Debug for USER_INFO_1017

impl Debug for NET_DISPLAY_MACHINE

impl Debug for SP_DRVINSTALL_PARAMS

impl Debug for USER_INFO_1012

impl Debug for BLOB

impl Debug for D3D11_BUS_TYPE

impl Debug for MIDIINCAPSW

impl Debug for IDirect3DDevice9Ex

impl Debug for NMTVDISPINFOA

impl Debug for D3D12_FEATURE_DATA_FORMAT_SUPPORT

impl<B> Debug for SendRequest<B>[src]

impl Debug for OnUpgrade[src]

impl Debug for Chunk[src]

impl Debug for Connected[src]

impl Debug for ResponseFuture[src]

impl Debug for TokioThreadpoolGaiResolver[src]

impl Debug for ResponseFuture[src]

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

impl Debug for HttpInfo[src]

impl Debug for Sender[src]

impl Debug for AddrStream[src]

impl Debug for Builder[src]

impl<I, S> Debug for Server<I, S, Exec> where
    I: Debug,
    S: Debug
[src]

impl<I, S, E> Debug for Serve<I, S, E> where
    E: Debug,
    I: Debug,
    S: Debug
[src]

impl Debug for InvalidNameError[src]

impl Debug for TokioThreadpoolGaiFuture[src]

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

impl Debug for AddrIncoming[src]

impl Debug for Upgraded[src]

impl<I, E> Debug for Builder<I, E> where
    E: Debug,
    I: Debug
[src]

impl Debug for Destination[src]

impl<I, S> Debug for Connection<I, S, Exec> where
    S: Service
[src]

impl<T, B> Debug for Connection<T, B> where
    B: Payload + 'static,
    T: AsyncRead + AsyncWrite + Debug + Send + 'static, 
[src]

impl Debug for GaiAddrs[src]

impl Debug for GaiFuture[src]

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

impl Debug for Error[src]

impl<T, B> Debug for Handshake<T, B>[src]

impl Debug for GaiResolver[src]

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

impl Debug for Builder[src]

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

impl Debug for Name[src]

impl Debug for CpuPool

impl Debug for Builder

impl<T, E> Debug for CpuFuture<T, E> where
    E: Debug,
    T: Debug

impl Debug for Builder[src]

impl Debug for Error[src]

impl Debug for PushPromises[src]

impl<T, B> Debug for Connection<T, B> where
    B: Debug + IntoBuf,
    T: Debug,
    <B as IntoBuf>::Buf: Debug
[src]

impl<B> Debug for SendStream<B> where
    B: Debug + IntoBuf,
    <B as IntoBuf>::Buf: Debug
[src]

impl Debug for StreamId[src]

impl<T, B> Debug for Handshake<T, B> where
    B: Debug + IntoBuf,
    T: AsyncRead + AsyncWrite + Debug,
    <B as IntoBuf>::Buf: Debug,
    <B as IntoBuf>::Buf: IntoBuf
[src]

impl Debug for Builder[src]

impl Debug for RecvStream[src]

impl Debug for ResponseFuture[src]

impl Debug for ReleaseCapacity[src]

impl Debug for PushedResponseFuture[src]

impl<T, B> Debug for Connection<T, B> where
    B: Debug + IntoBuf,
    T: AsyncRead + AsyncWrite + Debug,
    <B as IntoBuf>::Buf: Debug
[src]

impl<T, B> Debug for Handshake<T, B> where
    B: Debug + IntoBuf,
    T: AsyncRead + AsyncWrite + Debug
[src]

impl<B> Debug for SendResponse<B> where
    B: Debug + IntoBuf,
    <B as IntoBuf>::Buf: Debug
[src]

impl<B> Debug for SendRequest<B> where
    B: IntoBuf
[src]

impl Debug for Reason[src]

impl Debug for PushPromise[src]

impl<B> Debug for ReadySendRequest<B> where
    B: Debug + IntoBuf
[src]

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

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

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

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

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

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

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

impl<R, W> Debug for Copy<R, W> where
    R: Debug,
    W: Debug
[src]

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

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

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

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

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

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

impl Debug for SetLoggerError[src]

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

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

impl Debug for ParseLevelError[src]

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

impl Debug for LevelFilter[src]

impl Debug for Level[src]

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

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

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

impl<T> Debug for String<T> where
    T: AsRef<[u8]>, 
[src]

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

impl<K, V, S> Debug for IndexMap<K, V, S> where
    K: Debug + Hash + Eq,
    S: BuildHasher,
    V: Debug
[src]

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

impl Debug for InvalidChunkSize[src]

impl<'headers, 'buf> Debug for Request<'headers, 'buf> where
    'buf: 'headers, 
[src]

impl<'headers, 'buf> Debug for Response<'headers, 'buf> where
    'buf: 'headers, 
[src]

impl Debug for Error[src]

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

impl Debug for UdpBuilder[src]

impl Debug for TcpBuilder[src]

impl Debug for Timespec[src]

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

impl Debug for SteadyTime[src]

impl Debug for OutOfRangeError[src]

impl Debug for Duration[src]

impl Debug for Tm[src]

impl Debug for ParseError[src]

impl Debug for Shutdown[src]

impl Debug for Runtime[src]

impl Debug for Builder[src]

impl Debug for Handle[src]

impl Debug for Runtime[src]

impl Debug for TaskExecutor[src]

impl Debug for Spawn[src]

impl Debug for Builder[src]

impl Debug for Events[src]

impl Debug for Registration[src]

impl Debug for Token[src]

impl Debug for Overlapped[src]

impl Debug for TcpStream[src]

impl Debug for Ready[src]

impl Debug for Event[src]

impl Debug for Binding[src]

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

impl Debug for TcpListener[src]

impl Debug for Poll[src]

impl Debug for SetReadiness[src]

impl Debug for UdpSocket[src]

impl Debug for PollOpt[src]

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

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

impl Debug for AnonRead[src]

impl Debug for AnonWrite[src]

impl Debug for NamedPipe[src]

impl Debug for CompletionStatus[src]

impl Debug for Overlapped[src]

impl Debug for CompletionPort[src]

impl Debug for NamedPipeBuilder[src]

impl Debug for Handle[src]

impl<'a, P> Debug for Entered<'a, P> where
    P: Park
[src]

impl Debug for RunTimeoutError[src]

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

impl<P> Debug for CurrentThread<P> where
    P: Park
[src]

impl Debug for TaskExecutor[src]

impl Debug for Turn[src]

impl Debug for TurnError[src]

impl Debug for RunError[src]

impl Debug for SpawnError[src]

impl Debug for ParkThread[src]

impl Debug for Enter[src]

impl Debug for UnparkThread[src]

impl Debug for ParkError[src]

impl Debug for DefaultExecutor[src]

impl Debug for EnterError[src]

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

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

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

impl Debug for Backoff

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

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

impl Debug for WaitGroup

impl Debug for Parker

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

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

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

impl Debug for Unparker

impl Debug for Turn[src]

impl Debug for Handle[src]

impl Debug for Shutdown[src]

impl Debug for Background[src]

impl Debug for Registration[src]

impl Debug for Reactor[src]

impl Debug for SetFallbackError[src]

impl<E> Debug for PollEvented<E> where
    E: Debug + Evented
[src]

impl Debug for Condvar

impl Debug for OnceState

impl Debug for Once

impl Debug for WaitTimeoutResult

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

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

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

impl Debug for Always

impl<T, F, S> Debug for ScopeGuard<T, F, S> where
    F: FnMut(&mut T),
    S: Strategy + Debug,
    T: Debug

impl Debug for dyn Erased + 'static

impl<O, T> Debug for OwningRef<O, T> where
    O: Debug,
    T: Debug + ?Sized

impl<O, T> Debug for OwningRefMut<O, T> where
    O: Debug,
    T: Debug + ?Sized

impl Debug for ParkResult

impl Debug for FilterOp

impl Debug for ParkToken

impl Debug for UnparkToken

impl Debug for UnparkResult

impl Debug for RequeueOp

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

impl Debug for ChiSquared[src]

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

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

impl Debug for StepRng[src]

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

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

impl Debug for SmallRng[src]

impl Debug for Hc128Rng[src]

impl Debug for Normal[src]

impl Debug for Triangular[src]

impl Debug for Bernoulli[src]

impl Debug for Binomial[src]

impl Debug for Open01[src]

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

impl Debug for EntropyRng[src]

impl Debug for StudentT[src]

impl Debug for EntropyRng[src]

impl Debug for XorShiftRng[src]

impl Debug for Weibull[src]

impl Debug for Cauchy[src]

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

impl Debug for Pareto[src]

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

impl Debug for IndexVecIntoIter[src]

impl Debug for Dirichlet[src]

impl Debug for Alphanumeric[src]

impl Debug for ThreadRng[src]

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

impl Debug for ThreadRng[src]

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

impl Debug for StdRng[src]

impl Debug for UniformDuration[src]

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

impl Debug for LogNormal[src]

impl Debug for OpenClosed01[src]

impl Debug for Poisson[src]

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

impl Debug for WeightedError[src]

impl Debug for IndexVec[src]

impl Debug for UnitCircle[src]

impl Debug for UnitSphereSurface[src]

impl Debug for FisherF[src]

impl Debug for Beta[src]

impl Debug for Exp[src]

impl Debug for Gamma[src]

impl Debug for StdRng[src]

impl Debug for OsRng[src]

impl Debug for Exp1[src]

impl Debug for Standard[src]

impl Debug for IsaacRng[src]

impl Debug for StandardNormal[src]

impl Debug for ChaChaRng[src]

impl Debug for Isaac64Rng[src]

impl Debug for TimerError[src]

impl Debug for JitterRng[src]

impl Debug for Error[src]

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

impl Debug for ErrorKind[src]

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

impl Debug for OsRng[src]

impl Debug for IsaacRng[src]

impl Debug for IsaacCore[src]

impl Debug for Isaac64Core[src]

impl Debug for Isaac64Rng[src]

impl Debug for ChaChaRng[src]

impl Debug for ChaChaCore[src]

impl Debug for Hc128Core[src]

impl Debug for Hc128Rng[src]

impl Debug for Mcg128Xsl64[src]

impl Debug for Lcg64Xsh32[src]

impl Debug for XorShiftRng[src]

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

impl Debug for Void

impl Debug for Builder[src]

impl Debug for ThreadPool[src]

impl Debug for WorkerId[src]

impl Debug for Worker[src]

impl Debug for DefaultPark[src]

impl Debug for BlockingError[src]

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

impl Debug for DefaultUnpark[src]

impl Debug for Shutdown[src]

impl Debug for ParkError[src]

impl Debug for Sender[src]

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

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

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

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

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

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

impl Debug for WaitGroup

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

impl<T> Debug for Atomic<T>

impl Debug for Guard

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

impl<T> Debug for Owned<T>

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

impl Debug for Collector

impl Debug for LocalHandle

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

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

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

impl<A> Debug for ArrayString<A> where
    A: Array<Item = u8>, 
[src]

impl<T> Debug for Worker<T>

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

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

impl<T> Debug for Stealer<T>

impl Debug for RecvError

impl<'a> Debug for Select<'a>

impl<'a> Debug for SelectedOperation<'a>

impl Debug for SelectTimeoutError

impl<T> Debug for TrySendError<T>

impl Debug for ReadyTimeoutError

impl Debug for RecvTimeoutError

impl Debug for TryReadyError

impl Debug for TryRecvError

impl<T> Debug for IntoIter<T>

impl<T> Debug for SendError<T>

impl<T> Debug for SendTimeoutError<T>

impl<T> Debug for Sender<T>

impl<'a, T> Debug for TryIter<'a, T>

impl<T> Debug for Receiver<T>

impl Debug for TrySelectError

impl<'a, T> Debug for Iter<'a, T>

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

impl<T, N> Debug for Timer<T, N> where
    N: Debug,
    T: Debug
[src]

impl Debug for Clock[src]

impl Debug for Key[src]

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

impl Debug for Turn[src]

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

impl Debug for Delay[src]

impl Debug for Handle[src]

impl Debug for Error[src]

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

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

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

impl Debug for Interval[src]

impl Debug for Incoming[src]

impl Debug for TcpListener[src]

impl Debug for TcpStream[src]

impl Debug for ConnectFuture[src]

impl Debug for Giver[src]

impl Debug for SharedGiver[src]

impl Debug for Closed[src]

impl Debug for Taker[src]

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

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

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

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

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

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

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

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

impl Debug for Error[src]

impl Debug for Protocol[src]

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

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

impl Debug for CertStore

impl Debug for Protocol

impl Debug for CertContext

impl Debug for Direction

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

impl Debug for Algorithm

impl Debug for Builder

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

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

impl Debug for IgnoredAny[src]

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

impl Debug for Error[src]

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

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

impl<E> Debug for I64Deserializer<E> where
    E: Debug
[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<E> Debug for U8Deserializer<E> where
    E: Debug
[src]

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

impl<'de, E> Debug for BorrowedStrDeserializer<'de, E> where
    E: Debug
[src]

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

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

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

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

impl<I, E> Debug for SeqDeserializer<I, E> where
    E: Debug,
    I: Debug
[src]

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

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

impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E> where
    E: Debug
[src]

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

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

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

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

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

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

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

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

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

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

impl Debug for Number[src]

impl Debug for CompactFormatter[src]

impl Debug for Category[src]

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

impl Debug for Value[src]

impl Debug for Error[src]

impl Debug for Origin[src]

impl Debug for Position[src]

impl Debug for OpaqueOrigin[src]

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

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

impl Debug for SyntaxViolation[src]

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

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

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

impl Debug for SocketAddrs[src]

impl Debug for ParseError[src]

impl Debug for Errors

impl Debug for BidiClass

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

impl Debug for ParagraphInfo

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

impl Debug for Error

impl Debug for Level

impl Debug for IsNormalized

impl Debug for SIMPLE_ENCODE_SET

impl Debug for QUERY_ENCODE_SET

impl Debug for USERINFO_ENCODE_SET

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

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

impl Debug for PATH_SEGMENT_ENCODE_SET

impl Debug for DEFAULT_ENCODE_SET

impl Debug for OwnedName

impl Debug for Error

impl Debug for OwnedAttribute

impl Debug for ErrorKind

impl Debug for XmlEvent

impl Debug for NamespaceStack

impl Debug for Namespace

impl Debug for ParserConfig

impl Debug for EmitterConfig

impl<'a> Debug for XmlEvent<'a>

impl Debug for EmitterError

impl Debug for XmlVersion

impl Debug for TextPosition

impl<'a> Debug for Attribute<'a>

impl<'a> Debug for Name<'a>

impl Debug for AuthScheme[src]

impl Debug for RetryAfter[src]

impl Debug for AcceptEncoding[src]

impl Debug for Allow[src]

impl Debug for ProxyAuthorization[src]

impl Debug for Host[src]

impl Debug for ContentType[src]

impl Debug for Accept[src]

impl Debug for ContentLength[src]

impl Debug for ContentEncoding[src]

impl Debug for Error[src]

impl Debug for Quality[src]

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

impl Debug for Token68[src]

impl Debug for HttpDate[src]

impl Debug for ContentCoding[src]

impl Debug for CharacterSet

impl Debug for DecodeError

impl Debug for Config

impl Debug for LineEnding

impl Debug for DisplayError

impl Debug for LineWrap

impl Debug for Numeric[src]

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

impl Debug for NaiveDateTime[src]

The Debug output of the naive date and time dt is same to 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 Local[src]

impl Debug for SecondsFormat[src]

impl<Tz> Debug for DateTime<Tz> where
    Tz: TimeZone
[src]

impl Debug for NaiveTime[src]

The Debug output of the naive time t is same to 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 Weekday[src]

impl Debug for Fixed[src]

impl Debug for InternalFixed[src]

impl Debug for ParseError[src]

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

impl Debug for IsoWeek[src]

The Debug output of the ISO week w is same to 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 InternalNumeric[src]

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

impl Debug for Utc[src]

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

impl Debug for Pad[src]

impl Debug for Parsed[src]

impl Debug for FixedOffset[src]

impl<Tz> Debug for Date<Tz> where
    Tz: TimeZone
[src]

impl Debug for NaiveDate[src]

The Debug output of the naive date d is same to 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 ParseWeekdayError[src]

impl Debug for FloatErrorKind[src]

impl Debug for ParseFloatError[src]

impl Debug for Mime[src]

impl Debug for FromStrError[src]

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

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

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

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

Loading content...

Implementors

impl Debug for CallStatus[src]

impl Debug for CallbackEvent[src]

impl Debug for twilio_async::Direction[src]

impl Debug for MsgStatus[src]

impl Debug for RecordingStatus[src]

impl Debug for TwilioErr[src]

impl Debug for Alignment[src]

impl Debug for ExecuteErrorKind[src]

impl Debug for twilio_async::io::ErrorKind[src]

impl Debug for SeekFrom[src]

impl Debug for twilio_async::twiml::Method[src]

impl Debug for twilio_async::twiml::Record[src]

impl Debug for Voice[src]

impl Debug for TwimlErr[src]

impl Debug for BorrowError[src]

impl Debug for BorrowMutError[src]

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

impl Debug for twilio_async::io::Empty[src]

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

impl Debug for Initializer[src]

impl Debug for twilio_async::io::Repeat[src]

impl Debug for Sink[src]

impl Debug for Stderr[src]

impl Debug for Stdin[src]

impl Debug for Stdout[src]

impl Debug for Authorization[src]

impl Debug for Body[src]

impl Debug for CallResp[src]

impl Debug for ConferenceResp[src]

impl Debug for Credentials[src]

impl Debug for EncryptionDetails[src]

impl Debug for ListAllMsgs[src]

impl Debug for ListConferencesResp[src]

impl Debug for ListRecordingResp[src]

impl Debug for MediaItem[src]

impl Debug for MediaResp[src]

impl Debug for twilio_async::Method[src]

impl Debug for MsgResp[src]

impl Debug for RecordingResp[src]

impl Debug for Twilio[src]

impl Debug for Url[src]

Debug the serialization of this URL.

impl Debug for Hangup[src]

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

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

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

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

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

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

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

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

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

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

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

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

impl<'a> Debug for twilio_async::Msg<'a>[src]

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

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

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

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

impl<'a> Debug for twilio_async::twiml::Msg<'a>[src]

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

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

impl<'a> Debug for twilio_async::twiml::Response<'a>[src]

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

impl<A> Debug for twilio_async::future::Flatten<A> where
    A: Future + Debug,
    <A as Future>::Item: IntoFuture,
    <<A as IntoFuture>::Item as IntoFuture>::Future: Debug
[src]

impl<A> Debug for twilio_async::future::Fuse<A> where
    A: Future + Debug
[src]

impl<A> Debug for SelectAll<A> where
    A: Debug + Future
[src]

impl<A> Debug for SelectOk<A> where
    A: Debug + Future
[src]

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

impl<A, B> Debug for Join<A, B> where
    A: Future + Debug,
    B: Future<Error = <A as Future>::Error> + Debug,
    <A as Future>::Item: Debug,
    <B as Future>::Item: Debug
[src]

impl<A, B> Debug for twilio_async::future::Select<A, B> where
    A: Future + Debug,
    B: Debug + Future<Item = <A as Future>::Item, Error = <A as Future>::Error>, 
[src]

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

impl<A, B> Debug for SelectNext<A, B> where
    A: Future + Debug,
    B: Debug + Future<Item = <A as Future>::Item, Error = <A as Future>::Error>, 
[src]

impl<A, B, C> Debug for Join3<A, B, C> where
    A: Future + Debug,
    B: Future<Error = <A as Future>::Error> + Debug,
    C: Future<Error = <A as Future>::Error> + Debug,
    <A as Future>::Item: Debug,
    <B as Future>::Item: Debug,
    <C as Future>::Item: Debug
[src]

impl<A, B, C, D> Debug for Join4<A, B, C, D> where
    A: Future + Debug,
    B: Future<Error = <A as Future>::Error> + Debug,
    C: Future<Error = <A as Future>::Error> + Debug,
    D: Future<Error = <A as Future>::Error> + Debug,
    <A as Future>::Item: Debug,
    <B as Future>::Item: Debug,
    <C as Future>::Item: Debug,
    <D as Future>::Item: Debug
[src]

impl<A, B, C, D, E> Debug for Join5<A, B, C, D, E> where
    A: Future + Debug,
    B: Future<Error = <A as Future>::Error> + Debug,
    C: Future<Error = <A as Future>::Error> + Debug,
    D: Future<Error = <A as Future>::Error> + Debug,
    E: Future<Error = <A as Future>::Error> + Debug,
    <A as Future>::Item: Debug,
    <B as Future>::Item: Debug,
    <C as Future>::Item: Debug,
    <D as Future>::Item: Debug,
    <E as Future>::Item: Debug
[src]

impl<A, B, F> Debug for twilio_async::future::AndThen<A, B, F> where
    A: Debug + Future,
    B: Debug + IntoFuture,
    F: Debug,
    <B as IntoFuture>::Future: Debug
[src]

impl<A, B, F> Debug for twilio_async::future::OrElse<A, B, F> where
    A: Debug + Future,
    B: Debug + IntoFuture,
    F: Debug,
    <B as IntoFuture>::Future: Debug
[src]

impl<A, B, F> Debug for twilio_async::future::Then<A, B, F> where
    A: Debug + Future,
    B: Debug + IntoFuture,
    F: Debug,
    <B as IntoFuture>::Future: Debug
[src]

impl<A, E> Debug for twilio_async::future::FromErr<A, E> where
    A: Debug + Future,
    E: Debug
[src]

impl<A, F> Debug for twilio_async::future::Inspect<A, F> where
    A: Debug + Future,
    F: Debug
[src]

impl<A, F> Debug for LoopFn<A, F> where
    A: Debug + IntoFuture,
    F: Debug,
    <A as IntoFuture>::Future: Debug
[src]

impl<A, F> Debug for twilio_async::future::Map<A, F> where
    A: Debug + Future,
    F: Debug
[src]

impl<A, F> Debug for twilio_async::future::MapErr<A, F> where
    A: Debug + Future,
    F: Debug
[src]

impl<B> Debug for twilio_async::io::Lines<B> where
    B: Debug
[src]

impl<B> Debug for twilio_async::io::Split<B> where
    B: Debug
[src]

impl<C, B> Debug for Client<C, B>[src]

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

impl<F> Debug for twilio_async::future::CatchUnwind<F> where
    F: Debug + Future
[src]

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

impl<F> Debug for FlattenStream<F> where
    F: Future + Debug,
    <F as Future>::Item: Stream,
    <F as Future>::Item: Debug,
    <<F as Future>::Item as Stream>::Error == <F as Future>::Error
[src]

impl<F> Debug for IntoStream<F> where
    F: Future + Debug
[src]

impl<F> Debug for twilio_async::future::PollFn<F> where
    F: Debug
[src]

impl<F> Debug for twilio_async::future::Shared<F> where
    F: Future + Debug,
    <F as Future>::Item: Debug,
    <F as Future>::Error: Debug
[src]

impl<F, R> Debug for Lazy<F, R> where
    F: Debug,
    R: IntoFuture + Debug,
    <R as IntoFuture>::Future: Debug
[src]

impl<I> Debug for JoinAll<I> where
    I: IntoIterator,
    <I as IntoIterator>::Item: IntoFuture,
    <<I as IntoIterator>::Item as IntoFuture>::Future: Debug,
    <<I as IntoIterator>::Item as IntoFuture>::Item: Debug
[src]

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

impl<R> Debug for twilio_async::io::Bytes<R> where
    R: Debug
[src]

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

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

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

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

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

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

impl<T> Debug for twilio_async::io::Take<T> where
    T: Debug
[src]

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

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

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

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

impl<T, E> Debug for twilio_async::future::Empty<T, E> where
    E: Debug,
    T: Debug
[src]

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

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

impl<T, U> Debug for twilio_async::io::Chain<T, U> where
    T: Debug,
    U: Debug
[src]

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]

Loading content...