Trait twilio_async::fmt::Debug1.0.0[][src]

#[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

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, }));

Implementations on Foreign Types

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

impl Debug for CStr
[src]

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

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

impl Debug for ChildStdin
[src]

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

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

impl Debug for SocketAddr
[src]

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

impl Debug for SystemTime
[src]

impl Debug for IntoStringError
[src]

impl Debug for OnceState
[src]

impl Debug for CString
[src]

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

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

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

impl Debug for ExitCode
[src]

impl Debug for Permissions
[src]

impl Debug for BarrierWaitResult
[src]

impl Debug for IpAddr
[src]

impl Debug for SocketAddrV6
[src]

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

impl Debug for Ipv6MulticastScope
[src]

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

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

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

impl Debug for JoinPathsError
[src]

impl Debug for Barrier
[src]

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

impl Debug for TcpStream
[src]

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

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

impl Debug for Ipv4Addr
[src]

impl Debug for VarsOs
[src]

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

impl Debug for FileType
[src]

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

impl Debug for File
[src]

impl Debug for Thread
[src]

impl Debug for RecvTimeoutError
[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<'a, T, S> Debug for SymmetricDifference<'a, T, S> where
    S: BuildHasher,
    T: Debug + Eq + Hash
[src]

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

impl Debug for RandomState
[src]

impl Debug for ThreadId
[src]

impl Debug for Condvar
[src]

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

impl Debug for Path
[src]

impl Debug for VarError
[src]

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

impl Debug for DirBuilder
[src]

impl Debug for UdpSocket
[src]

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

impl Debug for Metadata
[src]

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

impl Debug for TcpListener
[src]

impl Debug for ChildStderr
[src]

impl Debug for Instant
[src]

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

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

impl Debug for DefaultHasher
[src]

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

impl Debug for ExitStatus
[src]

impl Debug for TryRecvError
[src]

impl Debug for ChildStdout
[src]

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

impl Debug for Args
[src]

impl Debug for Shutdown
[src]

impl Debug for Command
[src]

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

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

impl Debug for NulError
[src]

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

impl Debug for c_void
[src]

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

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

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

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

impl Debug for Vars
[src]

impl Debug for Stdio
[src]

impl Debug for OsString
[src]

impl Debug for DirEntry
[src]

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

impl Debug for AccessError
[src]

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

impl Debug for Child
[src]

impl Debug for RecvError
[src]

impl Debug for SocketAddrV4
[src]

impl Debug for OsStr
[src]

impl Debug for SystemTimeError
[src]

impl Debug for FromBytesWithNulError
[src]

impl Debug for Once
[src]

impl Debug for Ipv6Addr
[src]

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

impl Debug for ReadDir
[src]

impl Debug for Builder
[src]

impl Debug for ArgsOs
[src]

impl Debug for OpenOptions
[src]

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

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

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

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

impl Debug for StripPrefixError
[src]

impl Debug for AddrParseError
[src]

impl Debug for PathBuf
[src]

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

impl Debug for WaitTimeoutResult
[src]

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

impl Debug for Output
[src]

impl Debug for Select
[src]

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

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

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

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

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

impl Debug for SearchStep
[src]

impl Debug for __m128d
[src]

impl Debug for i8x8
[src]

impl Debug for char
[src]

impl Debug for u16x16
[src]

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

impl Debug for u8x4
[src]

impl Debug for str
[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 Debug for DecodeUtf16Error
[src]

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

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

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

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

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

impl<T> Debug for [T; 8] 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 i128
[src]

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

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

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

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

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

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

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

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

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

impl<I, F> Debug for Inspect<I, F> where
    I: Debug
[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 Debug for m8x16
[src]

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

impl Debug for Pinned
[src]

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

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

impl Debug for Alignment
[src]

impl Debug for u16x32
[src]

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

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

impl Debug for NonZeroUsize
[src]

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

impl Debug for isize
[src]

impl Debug for Excess
[src]

impl Debug for __m256d
[src]

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

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

impl Debug for EscapeDefault
[src]

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

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

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

impl Debug for AllocErr
[src]

impl Debug for f64x2
[src]

impl Debug for CollectionAllocErr
[src]

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

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

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

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

impl Debug for u16x8
[src]

impl Debug for EscapeUnicode
[src]

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

impl Debug for ParseIntError
[src]

impl Debug for InvalidSequence
[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<I, St, F> Debug for Scan<I, St, F> where
    I: Debug,
    St: Debug
[src]

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

impl Debug for AtomicI8
[src]

impl Debug for f64x4
[src]

impl Debug for __m128
[src]

impl Debug for m1x64
[src]

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

impl Debug for m1x16
[src]

impl Debug for m8x2
[src]

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

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

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

impl Debug for f64
[src]

impl Debug for AtomicU32
[src]

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

impl Debug for ()
[src]

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

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

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

impl Debug for f32x8
[src]

impl Debug for Duration
[src]

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

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

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

impl Debug for __m256
[src]

impl Debug for f32x4
[src]

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

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

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

impl Debug for ToUppercase
[src]

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

impl<Idx> Debug for RangeInclusive<Idx> where
    Idx: 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 UnicodeVersion
[src]

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

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

impl Debug for u8x16
[src]

impl Debug for CharTryFromError
[src]

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

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

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

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

impl Debug for u32x16
[src]

impl Debug for i32x8
[src]

impl Debug for u32x4
[src]

impl Debug for __m128i
[src]

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

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

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

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

impl Debug for u8x32
[src]

impl Debug for NonZeroU128
[src]

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

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

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

impl<T> Debug for [T; 0] where
    T: Debug
[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<T11> Debug for (T11,) where
    T11: Debug + ?Sized
[src]

impl Debug for Utf8Lossy
[src]

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

impl Debug for u64x4
[src]

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

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

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

impl Debug for usize
[src]

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

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

impl Debug for u32
[src]

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

impl Debug for bool
[src]

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

impl Debug for i64x4
[src]

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

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

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

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

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

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

impl Debug for TryFromIntError
[src]

impl Debug for u32x8
[src]

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

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

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

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

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

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

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

impl Debug for i8x64
[src]

impl Debug for Any + 'static
[src]

impl Debug for CannotReallocInPlace
[src]

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

impl Debug for NonZeroU8
[src]

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

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

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

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

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

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

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

impl Debug for NonZeroU32
[src]

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

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

impl Debug for FpCategory
[src]

impl Debug for f64x8
[src]

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

impl Debug for m1x8
[src]

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

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

impl Debug for u16x2
[src]

impl Debug for AtomicI16
[src]

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

impl<T> Debug for Rev<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<'a> Debug for Bytes<'a>
[src]

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

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

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

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

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

impl Debug for AtomicU8
[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<'a, T, P> Debug for Split<'a, T, P> where
    P: FnMut(&T) -> bool,
    T: 'a + Debug
[src]

impl Debug for m64x4
[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<'a, T, P> Debug for RSplitNMut<'a, T, P> where
    P: FnMut(&T) -> bool,
    T: 'a + Debug
[src]

impl Debug for i32x4
[src]

impl Debug for AtomicU16
[src]

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

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

impl Debug for m64x2
[src]

impl Debug for m8x4
[src]

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

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

impl Debug for i16x4
[src]

impl Debug for i8x4
[src]

impl Debug for i16x2
[src]

impl Debug for m1x32
[src]

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

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

impl Debug for i8x16
[src]

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

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

impl Debug for TryFromSliceError
[src]

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

impl Debug for AtomicU64
[src]

impl Debug for __m256i
[src]

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

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

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

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

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

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

impl Debug for AtomicI32
[src]

impl Debug for m32x2
[src]

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

impl Debug for m8x32
[src]

impl Debug for i32
[src]

impl Debug for u32x2
[src]

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

impl<Ret, A, B> Debug for unsafe extern "C" fn(A, B) -> 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<'a, T> Debug for Chunks<'a, T> where
    T: 'a + 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> Debug for unsafe fn() -> Ret
[src]

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

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

impl Debug for f32
[src]

impl Debug for u8x64
[src]

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

impl Debug for f32x2
[src]

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

impl Debug for ParseCharError
[src]

impl Debug for u64x8
[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 Debug for u16x4
[src]

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

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

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

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

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

impl<'a> Debug for Location<'a>
[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 AtomicBool
[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<I, P> Debug for Filter<I, P> where
    I: 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 Debug for AtomicIsize
[src]

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

impl<Idx> Debug for Range<Idx> where
    Idx: 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<I> Debug for DecodeUtf8<I> where
    I: Iterator<Item = u8> + Debug
[src]

impl Debug for AtomicI64
[src]

impl Debug for i32x16
[src]

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

impl Debug for u16
[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<I> Debug for Cycle<I> where
    I: Debug
[src]

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

impl Debug for m16x16
[src]

impl Debug for Ordering
[src]

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

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

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

impl<A> Debug for IntoIter<A> where
    A: Debug
[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 Debug for ToLowercase
[src]

impl Debug for i32x2
[src]

impl<T> Debug for [T; 13] where
    T: 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<'a, P> Debug for SplitTerminator<'a, P> where
    P: Pattern<'a>,
    <P as Pattern<'a>>::Searcher: Debug
[src]

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

impl Debug for NoneError
[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 i64x2
[src]

impl Debug for m32x4
[src]

impl Debug for u8x2
[src]

impl Debug for !
[src]

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

impl Debug for TypeId
[src]

impl Debug for Layout
[src]

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

impl Debug for f32x16
[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 Debug for i8x2
[src]

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

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

impl Debug for Utf8Error
[src]

impl Debug for i16
[src]

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

impl Debug for Ordering
[src]

impl Debug for i16x16
[src]

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

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

impl Debug for i64
[src]

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

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

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

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

impl Debug for EscapeDefault
[src]

impl Debug for m16x4
[src]

impl Debug for SipHasher
[src]

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

impl Debug for ParseFloatError
[src]

impl Debug for i8x32
[src]

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

impl Debug for AtomicUsize
[src]

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

impl Debug for u8
[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<I> Debug for Cloned<I> where
    I: Debug
[src]

impl<Idx> Debug for RangeTo<Idx> where
    Idx: 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 u64
[src]

impl Debug for NonZeroU16
[src]

impl Debug for m32x8
[src]

impl Debug for u64x2
[src]

impl Debug for ParseBoolError
[src]

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

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

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

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

impl Debug for RangeFull
[src]

impl Debug for i16x32
[src]

impl Debug for i8
[src]

impl Debug for LayoutErr
[src]

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

impl Debug for m16x2
[src]

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

impl<'a, 'b> Debug for StrSearcher<'a, 'b>
[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 Drain<'a>
[src]

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

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

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

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

impl Debug for FromUtf8Error
[src]

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

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

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

impl Debug for Global
[src]

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

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

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

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

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

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

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

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

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

impl Debug for FromUtf16Error
[src]

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

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

impl Debug for String
[src]

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

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

impl<T> Debug for VecDeque<T> where
    T: Debug
[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<'a, K, V> Debug for Range<'a, K, V> where
    K: 'a + Debug,
    V: 'a + Debug
[src]

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

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

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

impl Debug for ParseError
[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl Debug for Run
[src]

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

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

impl<S> Debug for Flush<S> where
    S: Debug
[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<T> Debug for Sender<T> where
    T: Debug
[src]

impl Debug for Task
[src]

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

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

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

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

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

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

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

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

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

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

impl Debug for NotifyHandle
[src]

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

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

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

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

impl<T, E> Debug for SpawnHandle<T, E> where
    E: Debug,
    T: 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<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<T> Debug for UnboundedSender<T> where
    T: Debug
[src]

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

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

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

impl<I1, I2> Debug for MergedItem<I1, I2> where
    I1: Debug,
    I2: 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<S, F> Debug for SinkMapErr<S, F> where
    F: Debug,
    S: Debug
[src]

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

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

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

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

impl<S> Debug for Wait<S> where
    S: 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<T> Debug for UnboundedReceiver<T> where
    T: Debug
[src]

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

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

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

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

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

impl<T> Debug for Receiver<T> where
    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<S, F> Debug for FilterMap<S, F> where
    F: Debug,
    S: Debug
[src]

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

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

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

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

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

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

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

impl Debug for AtomicTask
[src]

impl<T, E> Debug for FutureSender<T, E> where
    E: Debug,
    T: Debug
[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<S, E> Debug for FromErr<S, E> where
    E: Debug,
    S: Debug
[src]

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

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

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

impl Debug for UnparkEvent
[src]

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

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

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

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<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<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<S, F, U> Debug for ForEach<S, F, U> where
    F: Debug,
    S: Debug,
    U: Debug + IntoFuture,
    <U as IntoFuture>::Future: Debug
[src]

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

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

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

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

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

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

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

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

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

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

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

impl<T> Debug for AsyncSink<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<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<S, F> Debug for InspectErr<S, F> where
    F: Debug,
    S: Debug + Stream
[src]

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

impl<T> Debug for Receiver<T> where
    T: 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<I, E> Debug for SpawnHandle<I, E>
[src]

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

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

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

impl Debug for Canceled
[src]

impl Debug for Builder
[src]

impl Debug for AddrIncoming
[src]

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

impl Debug for Uri
[src]

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

impl Debug for StatusCode
[src]

impl Debug for UseDefaultConnector
[src]

impl Debug for UriError
[src]

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

impl Debug for Error
[src]

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

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

impl Debug for FutureResponse
[src]

impl Debug for Chunk
[src]

impl Debug for ResponseFuture
[src]

impl Debug for Response<Body>
[src]

impl Debug for Body
[src]

impl<T, B> Debug for Connection<T, B> where
    B: Stream<Error = Error> + 'static,
    T: AsyncRead + AsyncWrite + Debug,
    <B as Stream>::Item: AsRef<[u8]>, 
[src]

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

impl Debug for HttpVersion
[src]

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

impl<S, B> Debug for Server<S, B> where
    B: Stream<Error = Error>,
    S: Debug,
    <B as Stream>::Item: AsRef<[u8]>, 
[src]

impl<I, S> Debug for Connection<I, S> where
    S: HyperService,
    <S as HyperService>::ResponseBody: Stream,
    <<S as HyperService>::ResponseBody as Stream>::Item: AsRef<[u8]>,
    <<S as HyperService>::ResponseBody as Stream>::Error == Error
[src]

impl Debug for CharacterSet

impl Debug for Config

impl Debug for DecodeError

impl Debug for LineEnding

impl Debug for LineWrap

impl Debug for DisplayError

impl Debug for LittleEndian
[src]

impl Debug for BigEndian
[src]

impl<B> Debug for Reader<B> where
    B: 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<T, U> Debug for Chain<T, U> where
    T: Debug,
    U: Debug
[src]

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

impl Debug for USER_INFO_1051

impl Debug for SpeechRuleAttributes

impl Debug for ISpStream

impl Debug for HTTP_SERVICE_CONFIG_URLACL_QUERY

impl Debug for SP_ALTPLATFORM_INFO_V1

impl Debug for D2D1_GEOMETRY_RELATION

impl Debug for ID3D12DebugDevice

impl Debug for LATENCY_TIME

impl Debug for D3D12_BLEND_DESC

impl Debug for ISpStreamFormatConverter

impl Debug for D3D12_TEX2D_DSV

impl Debug for READER_SEL_REQUEST

impl Debug for XINPUT_KEYSTROKE

impl Debug for IDirect3DDevice9

impl Debug for LVITEMA

impl Debug for MEM_RANGE

impl Debug for ID3D10ShaderReflection

impl Debug for D3D11_SHADER_INPUT_BIND_DESC

impl Debug for DISPID_SpeechGrammarRules

impl Debug for USER_INFO_1014

impl Debug for D2D1_OPACITY_MASK_CONTENT

impl Debug for IShellView3

impl Debug for CHANGEFILTERSTRUCT

impl Debug for IVssBackupComponentsEx

impl Debug for DXGI_SURFACE_DESC

impl Debug for D3DFORMAT

impl Debug for CONSOLE_CURSOR_INFO

impl Debug for D3D11_DEVICE_CONTEXT_TYPE

impl Debug for PANOSE

impl Debug for VSS_PROVIDER_PROP

impl Debug for PROCESS_MEMORY_COUNTERS_EX

impl Debug for D3D12_TEXTURE_COPY_TYPE

impl Debug for IEnumResources

impl Debug for D3DCMPFUNC

impl Debug for SP_DEVICE_INTERFACE_DATA

impl Debug for IDWriteLocalizedStrings

impl Debug for BUSNUMBER_RANGE

impl Debug for NMTOOLBARA

impl Debug for INPUT

impl Debug for HTTP_REQUEST_INFO_TYPE

impl Debug for BLOBHEADER

impl Debug for DXGI_MODE_DESC1

impl Debug for WICBitmapDecoderCapabilities

impl Debug for SecPkgContext_ConnectionInfo

impl Debug for FILE_COMPRESSION_INFO

impl Debug for D3D12_SHADER_BYTECODE

impl Debug for CACHE_DESCRIPTOR

impl Debug for D3D12_BLEND

impl Debug for RAWHID

impl Debug for SecPkgContext_NegoPackageInfo

impl Debug for COMMPROP

impl Debug for PDH_COUNTER_PATH_ELEMENTS_W

impl Debug for HTTP_LOG_DATA_TYPE

impl Debug for NET_VALIDATE_PERSISTED_FIELDS

impl Debug for DESIGNVECTOR

impl Debug for KDHELP

impl Debug for COMMTIMEOUTS

impl Debug for CM_NOTIFY_EVENT_DATA_DeviceHandle

impl Debug for ID2D1Layer

impl Debug for DXGI_OUTDUPL_POINTER_SHAPE_TYPE

impl Debug for ID3D11ShaderResourceView

impl Debug for SPDISPLAYTOKEN

impl Debug for USER_INFO_1006

impl Debug for SPSEMANTICFORMAT

impl Debug for SecPkgCredentials_Cert

impl Debug for CRYPT_DES_KEY_STATE

impl Debug for D2D1_LAYER_PARAMETERS

impl Debug for D3D11_RAISE_FLAG

impl Debug for DXGI_COMPUTE_PREEMPTION_GRANULARITY

impl Debug for ID3D11Asynchronous

impl Debug for DISPID_SpeechPhraseInfo

impl Debug for SPVALUETYPE

impl Debug for IDWriteFontList

impl Debug for SP_PROPCHANGE_PARAMS

impl Debug for IProfferService

impl Debug for D3D11_TEX2DMS_RTV

impl Debug for KERB_NET_ADDRESS

impl Debug for HIDD_CONFIGURATION

impl Debug for DISPID_SpeechMMSysAudio

impl Debug for NMHDDISPINFOW

impl Debug for VSS_OBJECT_UNION

impl Debug for D3D12_TEX2D_ARRAY_SRV

impl Debug for FONTSIGNATURE

impl Debug for ID3D11LinkingNode

impl Debug for WICGifGraphicControlExtensionProperties

impl Debug for SP_CLASSIMAGELIST_DATA

impl Debug for ID3D12CommandAllocator

impl Debug for IDirect3DCryptoSession9

impl Debug for IVssBackupComponentsEx4

impl Debug for VSS_SNAPSHOT_PROP

impl Debug for ID3D11DeviceContext

impl Debug for D3D12_PREDICATION_OP

impl Debug for USER_INFO_1003

impl Debug for D3D12_GRAPHICS_PIPELINE_STATE_DESC

impl Debug for THREAD_INFORMATION_CLASS

impl Debug for ISpObjectWithToken

impl Debug for SEC_WINNT_AUTH_SHORT_VECTOR

impl Debug for CERT_REVOCATION_CRL_INFO

impl Debug for SecPkgContext_NativeNamesW

impl Debug for CRYPT_TIMESTAMP_CONTEXT

impl Debug for in_addr_S_un_b

impl Debug for TTHITTESTINFOA

impl Debug for HTTP_LISTEN_ENDPOINT_INFO

impl Debug for IMenuBand

impl Debug for D3D11_RESOURCE_MISC_FLAG

impl Debug for D3D11_INPUT_CLASSIFICATION

impl Debug for ID3D12GraphicsCommandList

impl Debug for NTFS_FILE_RECORD_INPUT_BUFFER

impl Debug for SAFEARRAYUNION

impl Debug for FILE_ID_TYPE

impl Debug for SPAUDIOBUFFERINFO

impl Debug for D3D11_DEPTH_STENCILOP_DESC

impl Debug for D3DSWAPEFFECT

impl Debug for POINTER_INPUT_TYPE

impl Debug for BCRYPT_MULTI_HASH_OPERATION

impl Debug for DWRITE_TEXT_ALIGNMENT

impl Debug for USER_INFO_1011

impl Debug for D3DSHADER_COMPARISON

impl Debug for SECURITY_CAPABILITIES

impl Debug for DISPID_SpeechPhraseReplacements

impl Debug for D3D12_SIGNATURE_PARAMETER_DESC

impl Debug for SID_NAME_USE

impl Debug for IO_RANGE

impl Debug for MSA_INFO_0

impl Debug for IPersistFolder3

impl Debug for RPC_SECURITY_QOS_V4_A_union

impl Debug for DWRITE_TRIMMING

impl Debug for DXGI_RESIDENCY

impl Debug for D3D11_SHADER_DESC

impl Debug for DXGI_RGB

impl Debug for RBHITTESTINFO

impl Debug for FILE_SEGMENT_ELEMENT

impl Debug for IMalloc

impl Debug for ACCESS_INFO_1002

impl Debug for SecPkgCredentials_SSIProviderA

impl Debug for ID3D11Device

impl Debug for IDockingWindow

impl Debug for RPC_BINDING_HANDLE_TEMPLATE_V1_W

impl Debug for CERT_CHAIN_PARA

impl Debug for WAVEFORMATEXTENSIBLE

impl Debug for MEASUREITEMSTRUCT

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYUNRESTRICTEDPROTECTEDSHAREDRESOURCECOUNT_OUTPUT

impl Debug for SecPkgContext_PasswordExpiry

impl Debug for LSA_LOOKUP_DOMAIN_INFO_CLASS

impl Debug for D3D11_AUTHENTICATED_QUERY_CURRENT_ACCESSIBILITY_ENCRYPTION_OUTPUT

impl Debug for D3D11_FILTER_REDUCTION_TYPE

impl Debug for D3D11_MAPPED_SUBRESOURCE

impl Debug for DFS_INFO_106

impl Debug for D2D1_ANTIALIAS_MODE

impl Debug for JOB_SET_ARRAY

impl Debug for IHWEventHandler2

impl Debug for CERT_PUBLIC_KEY_INFO

impl Debug for SEC_APPLICATION_PROTOCOLS

impl Debug for SecBuffer

impl Debug for MSV1_0_LM20_LOGON

impl Debug for D3D12_RESOURCE_BARRIER_TYPE

impl Debug for D3DDEVINFO_D3D9CACHEUTILIZATION

impl Debug for INewMenuClient

impl Debug for D3D12_BUFFER_SRV_FLAGS

impl Debug for USER_INFO_1007

impl Debug for D3D11_LIBRARY_DESC

impl Debug for DEP_SYSTEM_POLICY_TYPE

impl Debug for RPC_SECURITY_QOS_V5_W_union

impl Debug for SecPkgContext_NegoStatus

impl Debug for IDXGISurface2

impl Debug for SecPkgCredentials_NamesW

impl Debug for IHWEventHandler

impl Debug for LOCALGROUP_INFO_1002

impl Debug for D3D12_CULL_MODE

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGUREUNCOMPRESSEDENCRYPTION

impl Debug for HTTP_VERSION

impl Debug for PRINTER_DEFAULTSW

impl Debug for SecPkgContext_PackageInfoW

impl Debug for ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA

impl Debug for TRUSTED_DOMAIN_AUTH_INFORMATION

impl Debug for IShellItemImageFactory

impl Debug for DISPID_SpeechAudioBufferInfo

impl Debug for D3DENCRYPTED_BLOCK_INFO

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGURE_INPUT

impl Debug for ITypeLib

impl Debug for HTTP_LOGGING_INFO

impl Debug for NMTOOLTIPSCREATED

impl Debug for IInitializeCommand

impl Debug for D3D12_TILE_COPY_FLAGS

impl Debug for SPRECOGNIZERSTATUS

impl Debug for IVssComponent

impl Debug for THREADENTRY32

impl Debug for KERB_SMART_CARD_UNLOCK_LOGON

impl Debug for D3D11_FEATURE_DATA_D3D9_OPTIONS

impl Debug for ISpVoice

impl Debug for RPC_PROTSEQ_VECTORA

impl Debug for IDelegateFolder

impl Debug for IFileDialogEvents

impl Debug for D3D11_AUTHENTICATED_PROTECTION_FLAGS

impl Debug for POLICY_DOMAIN_KERBEROS_TICKET_INFO

impl Debug for IObjectWithCancelEvent

impl Debug for IExtractImage

impl Debug for DISPID_SpeechRecoResult2

impl Debug for ID3D11DomainShader

impl Debug for SPAUDIOSTATUS

impl Debug for DXGI_SWAP_CHAIN_DESC

impl Debug for WICPngGamaProperties

impl Debug for EDataFlow

impl Debug for D3D12_TEX2DMS_ARRAY_RTV

impl Debug for IInputObject2

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_INPUT

impl Debug for IExecuteCommandApplicationHostEnvironment

impl Debug for D3D11_BIND_FLAG

impl Debug for D3DPSHADERCAPS2_0

impl Debug for LVBKIMAGEW

impl Debug for ADDRESS64

impl Debug for D3D12_DEPTH_STENCILOP_DESC

impl Debug for SPEVENTSOURCEINFO

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUID_OUTPUT

impl Debug for TASKDIALOG_ELEMENTS

impl Debug for SpeechStreamSeekPositionType

impl Debug for D3D12_CPU_DESCRIPTOR_HANDLE

impl Debug for D3D12_RESOURCE_BINDING_TIER

impl Debug for PSAPI_WORKING_SET_EX_BLOCK_Invalid

impl Debug for ID3D11FunctionParameterReflection

impl Debug for USER_INFO_1018

impl Debug for WSANAMESPACE_INFOEXW

impl Debug for D3D_TESSELLATOR_PARTITIONING

impl Debug for D3D12_BUFFER_SRV

impl Debug for NEGOTIATE_CALLER_NAME_REQUEST

impl Debug for IAppVisibilityEvents

impl Debug for D3D_CBUFFER_TYPE

impl Debug for SOCKET_PROCESSOR_AFFINITY

impl Debug for DISPID_SpeechPhraseReplacement

impl Debug for D3D11_TEX2DMS_ARRAY_SRV

impl Debug for KEY_TYPE_SUBTYPE

impl Debug for ISpeechDataKey

impl Debug for SpeechGrammarRuleStateTransitionType

impl Debug for ISpGrammarBuilder

impl Debug for STATSTG

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESS_INPUT

impl Debug for IMMDeviceEnumerator

impl Debug for D3D12_MEMORY_POOL

impl Debug for SpeechAudioState

impl Debug for D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_INPUT

impl Debug for WAVEHDR

impl Debug for ADDRESS_MODE

impl Debug for HARDWARE_COUNTER_TYPE

impl Debug for PRIORITY_HINT

impl Debug for KERB_LOGON_SUBMIT_TYPE

impl Debug for MENUITEMINFOW

impl Debug for PBRANGE

impl Debug for KERB_TICKET_UNLOCK_LOGON

impl Debug for KERB_QUERY_S4U2PROXY_CACHE_RESPONSE

impl Debug for DFS_INFO_7

impl Debug for COPYFILE2_MESSAGE_Error

impl Debug for D3DFOGMODE

impl Debug for RPC_BINDING_HANDLE_TEMPLATE_V1_A

impl Debug for SecPkgContext_NamesW

impl Debug for CRYPT_KEY_SIGN_MESSAGE_PARA

impl Debug for D3DQUERYTYPE

impl Debug for COMBOBOXEXITEMA

impl Debug for IDXGIDeviceSubObject

impl Debug for SCARD_T0_COMMAND

impl Debug for SCRIPT_ITEM

impl Debug for OVERLAPPED_ENTRY

impl Debug for SIP_CAP_SET_V3

impl Debug for D3D11_BLEND_DESC

impl Debug for SEC_WINNT_CREDUI_CONTEXT_VECTOR

impl Debug for D3D10_SHADER_DESC

impl Debug for FILEPATHS_W

impl Debug for ipv6_mreq

impl Debug for IDirect3DTexture9

impl Debug for IKnownFolderManager

impl Debug for D3D11_TEX2DMS_ARRAY_DSV

impl Debug for WOW64_LDT_ENTRY_Bits

impl Debug for D3D12_DESCRIPTOR_HEAP_FLAGS

impl Debug for WICJpegCommentProperties

impl Debug for DOMAIN_CONTROLLER_INFOW

impl Debug for D3D11_TEX2D_SRV

impl Debug for MMTIME

impl Debug for SAFEARR_DISPATCH

impl Debug for SCARD_T0_REQUEST

impl Debug for ID3D12DebugCommandList

impl Debug for FILEPATHS_SIGNERINFO_W

impl Debug for D3D11_VIDEO_PROCESSOR_STEREO_FLIP_MODE

impl Debug for TP_CALLBACK_INSTANCE

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGUREINITIALIZE

impl Debug for D3D11_FEATURE_DATA_D3D11_OPTIONS1

impl Debug for IFolderView2

impl Debug for FILEPATHS_SIGNERINFO_A

impl Debug for SPBINARYGRAMMAR

impl Debug for DSBCAPS

impl Debug for IWICBitmapLock

impl Debug for PROCESS_HEAP_ENTRY_Block

impl Debug for D2D_POINT_2F

impl Debug for ID2D1Resource

impl Debug for FILE_NAME_INFO

impl Debug for D3D11_BOX

impl Debug for QUOTA_LIMITS

impl Debug for NMTCKEYDOWN

impl Debug for TBBUTTON

impl Debug for SPXMLRESULTOPTIONS

impl Debug for MCGRIDINFO

impl Debug for HTTP_ENABLED_STATE

impl Debug for CLAIM_SECURITY_ATTRIBUTES_INFORMATION

impl Debug for D3DPRIMITIVETYPE

impl Debug for D3D12_RESOURCE_TRANSITION_BARRIER

impl Debug for CUSTDATA

impl Debug for CERT_USAGE_MATCH

impl Debug for ISpContainerLexicon

impl Debug for WINDOWPLACEMENT

impl Debug for D3D12_TEX1D_UAV

impl Debug for SAFEARRAYBOUND

impl Debug for CIEXYZTRIPLE

impl Debug for SecPkgContext_DceInfo

impl Debug for SEC_CHANNEL_BINDINGS

impl Debug for IDWriteFontFamily

impl Debug for CRYPTOAPI_BLOB

impl Debug for SpeechRunState

impl Debug for DWRITE_PIXEL_GEOMETRY

impl Debug for IDXGIOutput4

impl Debug for KERB_TICKET_PROFILE

impl Debug for ID2D1Geometry

impl Debug for NTFS_EXTENDED_VOLUME_DATA

impl Debug for D3DDISPLAYMODEFILTER

impl Debug for SPCONTEXTSTATE

impl Debug for D3D11_UAV_DIMENSION

impl Debug for SpeechFormatType

impl Debug for NMTVGETINFOTIPW

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT

impl Debug for D3D12_QUERY_DATA_SO_STATISTICS

impl Debug for DWRITE_GLYPH_OFFSET

impl Debug for CERT_NAME_INFO

impl Debug for SpeechEmulationCompareFlags

impl Debug for IDirect3D9

impl Debug for DISPID_SpeechPhraseProperties

impl Debug for SecPkgContext_NegotiationInfoW

impl Debug for USER_ALL_INFORMATION

impl Debug for IMMDeviceCollection

impl Debug for TASKDIALOG_FLAGS

impl Debug for D3D12_INPUT_ELEMENT_DESC

impl Debug for FILE_ID_BOTH_DIR_INFO

impl Debug for D2D_VECTOR_2F

impl Debug for WINHTTP_AUTOPROXY_OPTIONS

impl Debug for IThumbnailHandlerFactory

impl Debug for COPYFILE2_MESSAGE_ACTION

impl Debug for __MIDL_IOleAutomationTypes_0001

impl Debug for SECURITY_ATTRIBUTES

impl Debug for D2D1_FACTORY_OPTIONS

impl Debug for D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS

impl Debug for SecPkgContext_SubjectAttributes

impl Debug for HDHITTESTINFO

impl Debug for D3DDEVINFO_D3D9STAGETIMINGS

impl Debug for TVHITTESTINFO

impl Debug for SPPHRASEPROPERTYUNIONTYPE

impl Debug for SPPHRASEELEMENT

impl Debug for IDXGIResource1

impl Debug for IDeskBand

impl Debug for D3DPRESENTSTATS

impl Debug for D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC

impl Debug for D3DCULL

impl Debug for CMSG_SIGNED_ENCODE_INFO

impl Debug for HYPER_SIZEDARR

impl Debug for ID2D1DrawingStateBlock

impl Debug for RPC_ENDPOINT_TEMPLATEW

impl Debug for SecPkgContext_KeyInfoA

impl Debug for D3D_SHADER_INPUT_FLAGS

impl Debug for HTTP_SERVICE_CONFIG_CACHE_KEY

impl Debug for FILEOPENDIALOGOPTIONS

impl Debug for DISPID_SpeechGrammarRuleState

impl Debug for WSAQUERYSETW

impl Debug for D3D12_DRAW_INDEXED_ARGUMENTS

impl Debug for D3D_TESSELLATOR_OUTPUT_PRIMITIVE

impl Debug for ISpPhoneticAlphabetConverter

impl Debug for SOCKET_ADDRESS

impl Debug for DFS_INFO_200

impl Debug for BCRYPT_DH_KEY_BLOB

impl Debug for D3D11_TEX2D_DSV

impl Debug for NMIPADDRESS

impl Debug for CLEANLOCALSTORAGE

impl Debug for PCCARD_RESOURCE

impl Debug for MIDIINCAPSW

impl Debug for DWRITE_RENDERING_MODE

impl Debug for D3D11_FEATURE_DATA_D3D11_OPTIONS

impl Debug for SP_DEVICE_INTERFACE_DETAIL_DATA_A

impl Debug for D3D_SHADER_VARIABLE_TYPE

impl Debug for ID3D12ShaderReflectionConstantBuffer

impl Debug for SPBOOKMARKOPTIONS

impl Debug for XINPUT_BATTERY_INFORMATION

impl Debug for IDWriteTextFormat

impl Debug for D2D_VECTOR_4F

impl Debug for D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS

impl Debug for WINUSB_PIPE_INFORMATION

impl Debug for SpeechVoiceEvents

impl Debug for RO_ERROR_REPORTING_FLAGS

impl Debug for WICComponentType

impl Debug for NEGOTIATE_PACKAGE_PREFIXES

impl Debug for HTTP_DATA_CHUNK_TYPE

impl Debug for COPYFILE2_MESSAGE_ChunkStarted

impl Debug for D3D11_CLEAR_FLAG

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC

impl Debug for OUTPUT_DEBUG_STRING_INFO

impl Debug for IMAGE_FUNCTION_ENTRY

impl Debug for D3D11_TEX3D_SRV

impl Debug for ISharingConfigurationManager

impl Debug for VSS_SOURCE_TYPE

impl Debug for D3D12_BUFFER_UAV_FLAGS

impl Debug for SPCATEGORYTYPE

impl Debug for NMTBRESTORE

impl Debug for D3D11_TEX2D_ARRAY_DSV

impl Debug for IResolveShellLink

impl Debug for ADDRINFOW

impl Debug for SecPkgContext_CertInfo

impl Debug for IExecuteCommandHost

impl Debug for netent

impl Debug for IMenuPopup

impl Debug for IAccessibilityDockingService

impl Debug for _wireVARIANT

impl Debug for PRINTDLGEXA

impl Debug for IMAGE_DEBUG_DIRECTORY

impl Debug for D3D11_FILL_MODE

impl Debug for IWizardExtension

impl Debug for IPPROTO

impl Debug for EDITBALLOONTIP

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_OUTPUT

impl Debug for CRYPT_KEY_PROV_PARAM

impl Debug for D3D12_RENDER_TARGET_BLEND_DESC

impl Debug for COLORADJUSTMENT

impl Debug for IApartmentShutdown

impl Debug for DWRITE_SCRIPT_ANALYSIS

impl Debug for D3D11_FUNCTION_DESC

impl Debug for FILE_BASIC_INFO

impl Debug for DWRITE_LINE_BREAKPOINT

impl Debug for D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES

impl Debug for HIDP_EXTENDED_ATTRIBUTES

impl Debug for DWRITE_BREAK_CONDITION

impl Debug for SAFEARR_BRECORD

impl Debug for ISpRecognizer3

impl Debug for RPC_BINDING_HANDLE_TEMPLATE_V1_W_union

impl Debug for SP_REGISTER_CONTROL_STATUSW

impl Debug for D3DLOCKED_RECT

impl Debug for D2D_SIZE_F

impl Debug for URL_COMPONENTS

impl Debug for CTL_ENTRY

impl Debug for IDWriteLocalFontFileLoader

impl Debug for SecPkgContext_MappedCredAttr

impl Debug for USER_INFO_0

impl Debug for D3D_DRIVER_TYPE

impl Debug for DWRITE_FACTORY_TYPE

impl Debug for KDHELP64

impl Debug for REASON_CONTEXT

impl Debug for LSA_FOREST_TRUST_RECORD_TYPE

impl Debug for ID3D12ShaderReflectionVariable

impl Debug for CURRENCYFMTA

impl Debug for SpeechWordPronounceable

impl Debug for NET_VALIDATE_OUTPUT_ARG

impl Debug for TBREPLACEBITMAP

impl Debug for BCRYPT_PROVIDER_NAME

impl Debug for ELEMDESC

impl Debug for DFS_INFO_4

impl Debug for DXGI_MAPPED_RECT

impl Debug for TP_TIMER

impl Debug for LOADED_IMAGE

impl Debug for DWRITE_SCRIPT_SHAPES

impl Debug for WICBitmapLockFlags

impl Debug for D2D1_FIGURE_END

impl Debug for _CONTEXT

impl Debug for CERT_KEYGEN_REQUEST_INFO

impl Debug for IDirect3DQuery9

impl Debug for HTTP_SERVICE_CONFIG_QUERY_TYPE

impl Debug for NMTBDISPINFOW

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_V3_W

impl Debug for HD_TEXTFILTERW

impl Debug for ID2D1RectangleGeometry

impl Debug for OUTLINETEXTMETRICW

impl Debug for LSA_FOREST_TRUST_COLLISION_RECORD_TYPE

impl Debug for NMVIEWCHANGE

impl Debug for PSS_DUPLICATE_FLAGS

impl Debug for CRYPT_PROVIDER_REFS

impl Debug for IShellPropSheetExt

impl Debug for ID2D1Image

impl Debug for CRYPTCATMEMBER

impl Debug for UNWIND_HISTORY_TABLE_ENTRY

impl Debug for IDWriteFont

impl Debug for POLICY_NOTIFICATION_INFORMATION_CLASS

impl Debug for D3D11_BUFFER_SRV

impl Debug for IMAGE_DATA_DIRECTORY

impl Debug for WICBitmapInterpolationMode

impl Debug for DWRITE_FONT_WEIGHT

impl Debug for BITMAPINFO

impl Debug for SecPkgContext_ClientSpecifiedTarget

impl Debug for BCRYPT_ECCKEY_BLOB

impl Debug for IOperationsProgressDialog

impl Debug for MMTIME_midi

impl Debug for LOCALGROUP_INFO_0

impl Debug for DFS_INFO_107

impl Debug for CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE

impl Debug for HTTP_SSL_CLIENT_CERT_INFO

impl Debug for HTTP_SERVICE_CONFIG_URLACL_KEY

impl Debug for ID2D1GeometrySink

impl Debug for WSAQUERYSETA

impl Debug for RID_DEVICE_INFO_KEYBOARD

impl Debug for ID3D11VideoDecoder

impl Debug for SLIST_HEADER_HeaderX64

impl Debug for D3D11_BUFFEREX_SRV_FLAG

impl Debug for LIST_ENTRY32

impl Debug for KERB_TICKET_CACHE_INFO

impl Debug for SCHANNEL_CERT_HASH

impl Debug for DISPID_SpeechRecoResultTimes

impl Debug for POLICY_AUDIT_FULL_QUERY_INFO

impl Debug for LOGPALETTE

impl Debug for SecPkgContext_Lifespan

impl Debug for MS_ADDINFO_FLAT

impl Debug for ID2D1StrokeStyle

impl Debug for WICGifApplicationExtensionProperties

impl Debug for MSV1_0_PROFILE_BUFFER_TYPE

impl Debug for SecPkgContext_CredentialNameW

impl Debug for DFS_INFO_5

impl Debug for D3D11_FEATURE_DATA_D3D11_OPTIONS2

impl Debug for D3D11_FILTER_TYPE

impl Debug for UNWIND_HISTORY_TABLE

impl Debug for SpeechGrammarState

impl Debug for SPEAKFLAGS

impl Debug for DSROLE_PRIMARY_DOMAIN_INFO_LEVEL

impl Debug for WICPngChrmProperties

impl Debug for D3D_MIN_PRECISION

impl Debug for SecPkgContext_SessionKey

impl Debug for RPC_IF_ID_VECTOR

impl Debug for TASKDIALOG_NOTIFICATIONS

impl Debug for RATE_QUOTA_LIMIT

impl Debug for DISPID_SpeechXMLRecoResult

impl Debug for RIP_INFO

impl Debug for HDLAYOUT

impl Debug for KERB_CERTIFICATE_S4U_LOGON

impl Debug for D2D1_DEBUG_LEVEL

impl Debug for HTTP_FLOWRATE_INFO

impl Debug for IEnumVARIANT

impl Debug for CRYPT_INTERFACE_REG

impl Debug for DWRITE_FONT_SIMULATIONS

impl Debug for IDWriteTextAnalysisSource

impl Debug for D3D12_COMMAND_QUEUE_FLAGS

impl Debug for ID3D12Pageable

impl Debug for SPENDSRSTREAMFLAGS

impl Debug for HTTP_SERVICE_CONFIG_ID

impl Debug for KERB_TICKET_CACHE_INFO_EX

impl Debug for D3D12_PLACED_SUBRESOURCE_FOOTPRINT

impl Debug for IDXGISwapChain

impl Debug for DWRITE_LINE_SPACING_METHOD

impl Debug for PERFORMANCE_DATA

impl Debug for BIND_OPTS

impl Debug for D3DCOLORVALUE

impl Debug for IEnumFullIDList

impl Debug for SPPHRASEREPLACEMENT

impl Debug for D3D12_DRAW_ARGUMENTS

impl Debug for D3D11_VIDEO_DECODER_DESC

impl Debug for CABINET_INFO_A

impl Debug for DWRITE_GLYPH_RUN_DESCRIPTION

impl Debug for KERB_PROTOCOL_MESSAGE_TYPE

impl Debug for KERB_QUERY_S4U2PROXY_CACHE_REQUEST

impl Debug for STARTUPINFOW

impl Debug for NMCOMBOBOXEXW

impl Debug for IFrameworkInputPaneHandler

impl Debug for SEC_WINNT_AUTH_DATA

impl Debug for COPYFILE2_COPY_PHASE

impl Debug for PCCARD_DES

impl Debug for DXGI_OUTDUPL_DESC

impl Debug for HTTP_LOGGING_ROLLOVER_TYPE

impl Debug for D3D11_USAGE

impl Debug for HTTP_SERVICE_CONFIG_TIMEOUT_SET

impl Debug for IUrlHistoryStg

impl Debug for IWICPlanarFormatConverter

impl Debug for D3D12_ROOT_CONSTANTS

impl Debug for IFileDialogControlEvents

impl Debug for LVITEMINDEX

impl Debug for IPersistIDList

impl Debug for POLICY_PD_ACCOUNT_INFO

impl Debug for VSS_COMPONENTINFO

impl Debug for D3D11_SUBRESOURCE_DATA

impl Debug for WINHTTP_PROXY_INFO

impl Debug for DXGI_FRAME_PRESENTATION_MODE

impl Debug for KERB_ADD_BINDING_CACHE_ENTRY_REQUEST

impl Debug for SPSHORTCUTPAIRLIST

impl Debug for CRYPT_PROVIDERS

impl Debug for WSAPROTOCOLCHAIN

impl Debug for ISpEventSink

impl Debug for D3DTEXTUREADDRESS

impl Debug for ADAPTER_STATUS

impl Debug for CREDENTIAL_ATTRIBUTEA

impl Debug for IImageRecompress

impl Debug for IDXGISwapChainMedia

impl Debug for DFS_TARGET_PRIORITY

impl Debug for SecPkgContext_LogoffTime

impl Debug for DXGI_DISPLAY_COLOR_SPACE

impl Debug for SecPkgContext_RemoteCredentialInfo

impl Debug for POLICY_AUDIT_SUBCATEGORIES_INFO

impl Debug for STRING

impl Debug for HIDD_ATTRIBUTES

impl Debug for SAFEARR_BSTR

impl Debug for SecDelegationType

impl Debug for NMTRBTHUMBPOSCHANGING

impl Debug for KERB_PURGE_BINDING_CACHE_REQUEST

impl Debug for EXCEPTION_DISPOSITION

impl Debug for READER_SEL_REQUEST_ReaderAndContainerParameter

impl Debug for TEXTRANGE_PROPERTIES

impl Debug for IInspectable

impl Debug for IDWriteGlyphRunAnalysis

impl Debug for VSS_BACKUP_TYPE

impl Debug for DFS_STORAGE_INFO

impl Debug for SpeechInterference

impl Debug for HTTP_KNOWN_HEADER

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_W

impl Debug for IExplorerCommand

impl Debug for PROPVARIANT

impl Debug for ISpRegDataKey

impl Debug for HID_XFER_PACKET

impl Debug for TOUCHINPUT

impl Debug for IApplicationDesignModeSettings2

impl Debug for ID3D11VideoDecoderOutputView

impl Debug for HID_COLLECTION_INFORMATION

impl Debug for SPWORDTYPE

impl Debug for HID_DRIVER_CONFIG

impl Debug for NMLVODSTATECHANGE

impl Debug for DXGI_SWAP_CHAIN_FULLSCREEN_DESC

impl Debug for IIOCancelInformation

impl Debug for IFileOpenDialog

impl Debug for D3D12_ROOT_PARAMETER_TYPE

impl Debug for ITypeInfo

impl Debug for WICBitmapTransformOptions

impl Debug for MONITOR_DPI_TYPE

impl Debug for LVSETINFOTIP

impl Debug for MEM_DES

impl Debug for SecPkgContext_KeyInfoW

impl Debug for IDXGISurface

impl Debug for MMTIME_u

impl Debug for ICurrentItem

impl Debug for D3D12_RESOURCE_HEAP_TIER

impl Debug for SetupFileLogInfo

impl Debug for ACTIVATION_CONTEXT

impl Debug for D3D12_DISPATCH_ARGUMENTS

impl Debug for SECURITY_STRING

impl Debug for D3D12_TEX1D_ARRAY_UAV

impl Debug for NETLOGON_NETWORK_INFO

impl Debug for USB_DEVICE_SPEED

impl Debug for SE_LEARNING_MODE_DATA_TYPE

impl Debug for RPC_BINDING_HANDLE_TEMPLATE_V1_A_union

impl Debug for IPreviewItem

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTIDCOUNT_OUTPUT

impl Debug for ILaunchSourceViewSizePreference

impl Debug for D3D11_COUNTER_TYPE

impl Debug for WICBitmapEncoderCacheOption

impl Debug for D3D11_CULL_MODE

impl Debug for D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC

impl Debug for CRYPT_ATTRIBUTE_TYPE_VALUE

impl Debug for D3D11_BLEND_OP

impl Debug for DFS_INFO_300

impl Debug for DHPRIVKEY_VER3

impl Debug for MFCARD_DES

impl Debug for WICBitmapPlane

impl Debug for D3DRECTPATCH_INFO

impl Debug for NMOBJECTNOTIFY

impl Debug for NETLOGON_LOGON_IDENTITY_INFO

impl Debug for HTTP_DATA_CHUNK_FromFragmentCache

impl Debug for DWRITE_PARAGRAPH_ALIGNMENT

impl Debug for D3D12_TILE_REGION_SIZE

impl Debug for USER_INFO_1023

impl Debug for ACTCTXW

impl Debug for sockproto

impl Debug for D3D11_QUERY_DATA_SO_STATISTICS

impl Debug for HTTP_BYTE_RANGE

impl Debug for D3D12_RTV_DIMENSION

impl Debug for D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT_OUTPUT

impl Debug for D3D12_COMPUTE_PIPELINE_STATE_DESC

impl Debug for TTGETTITLE

impl Debug for D3D12_SRV_DIMENSION

impl Debug for ITransferDestination

impl Debug for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_ProcessorCore

impl Debug for ID3D11BlendState

impl Debug for IExplorerPaneVisibility

impl Debug for DXGI_PRESENT_PARAMETERS

impl Debug for MSV1_0_PROTOCOL_MESSAGE_TYPE

impl Debug for IPreviewHandler

impl Debug for D3D12_COMMAND_QUEUE_DESC

impl Debug for STGTY

impl Debug for USER_MODALS_INFO_1002

impl Debug for DFS_INFO_3

impl Debug for IInitializeWithItem

impl Debug for D3D12_HEAP_FLAGS

impl Debug for D3D11_TEX1D_ARRAY_UAV

impl Debug for ISpObjectToken

impl Debug for IMarshal

impl Debug for IActionProgressDialog

impl Debug for MSV1_0_CHANGEPASSWORD_RESPONSE

impl Debug for IBindCtx

impl Debug for NMTREEVIEWW

impl Debug for CONNECTDLGSTRUCTW

impl Debug for WSAESETSERVICEOP

impl Debug for DWRITE_MATRIX

impl Debug for KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE

impl Debug for ITaskbarList2

impl Debug for LSA_FOREST_TRUST_INFORMATION

impl Debug for VSS_COMPONENT_TYPE

impl Debug for POINTFLOAT

impl Debug for WICGifCommentExtensionProperties

impl Debug for ID3D12DeviceChild

impl Debug for DISPID_SpeechPhraseProperty

impl Debug for MEMORY_BASIC_INFORMATION64

impl Debug for CRL_INFO

impl Debug for ID3D10ShaderReflectionConstantBuffer

impl Debug for NMHEADERA

impl Debug for LIST_ENTRY

impl Debug for IDXGIAdapter2

impl Debug for IFolderView

impl Debug for MENU_EVENT_RECORD

impl Debug for ID3D11VideoDevice

impl Debug for D3D11_TEXTURE3D_DESC

impl Debug for D3D_INTERPOLATION_MODE

impl Debug for D3D11_TEXTURE2D_DESC

impl Debug for USER_MODALS_INFO_1001

impl Debug for RID_DEVICE_INFO_MOUSE

impl Debug for FILE_STANDARD_INFO

impl Debug for ID3D11DepthStencilState

impl Debug for linger

impl Debug for D3D_BLOB_PART

impl Debug for KERB_TICKET_CACHE_INFO_EX3

impl Debug for DISPID_SpeechPhraseElement

impl Debug for D3D12_FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS

impl Debug for DWRITE_LINE_METRICS

impl Debug for D3D12_COLOR_WRITE_ENABLE

impl Debug for RPC_PROTSEQ_VECTORW

impl Debug for ISpeechResourceLoader

impl Debug for WOW64_LDT_ENTRY

impl Debug for TP_WORK

impl Debug for IDXGIDevice2

impl Debug for D3D12_SAMPLER_DESC

impl Debug for HTTP_TIMEOUT_LIMIT_INFO

impl Debug for TBBUTTONINFOW

impl Debug for D3DLIGHTTYPE

impl Debug for DISPID_SpeechPhraseBuilder

impl Debug for D3DAUTHENTICATEDCHANNELTYPE

impl Debug for HIDP_KEYBOARD_DIRECTION

impl Debug for PRINTER_OPTIONSA

impl Debug for BCRYPT_MULTI_OBJECT_LENGTH_STRUCT

impl Debug for DFS_INFO_9

impl Debug for D3D11_OMAC

impl Debug for ID3D11Counter

impl Debug for DXGI_MODE_SCALING

impl Debug for SpeechVoicePriority

impl Debug for ITypeInfo2

impl Debug for DXGI_MEMORY_SEGMENT_GROUP

impl Debug for KERB_RETRIEVE_TKT_RESPONSE

impl Debug for IFileSaveDialog

impl Debug for TVITEMEXW

impl Debug for hostent

impl Debug for CRYPT_PRIVATE_KEY_INFO

impl Debug for LVFINDINFOA

impl Debug for READER_SEL_REQUEST_MATCH_TYPE

impl Debug for HTTP_AUTH_STATUS

impl Debug for TP_CALLBACK_ENVIRON_V3_s

impl Debug for MEMORY_RESOURCE_NOTIFICATION_TYPE

impl Debug for SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION

impl Debug for NMLVGETINFOTIPW

impl Debug for ID3D11Linker

impl Debug for IPrintDialogCallback

impl Debug for D3DMEMORYPRESSURE

impl Debug for D3DDEVINFO_VCACHE

impl Debug for DWRITE_INFORMATIONAL_STRING_ID

impl Debug for DXGI_QUERY_VIDEO_MEMORY_INFO

impl Debug for ID3D11LibraryReflection

impl Debug for EXIT_THREAD_DEBUG_INFO

impl Debug for BUTTON_IMAGELIST

impl Debug for STREAM_INFO_LEVELS

impl Debug for D3D12_DESCRIPTOR_RANGE

impl Debug for IDXGIObject

impl Debug for D3DOVERLAYCAPS

impl Debug for EXCEPTION_POINTERS

impl Debug for ID3D11Query

impl Debug for ID2D1GeometryGroup

impl Debug for _DXGI_OFFER_RESOURCE_PRIORITY

impl Debug for RPC_STATS_VECTOR

impl Debug for DFS_INFO_101

impl Debug for WSACOMPLETION_Port

impl Debug for KERB_TICKET_CACHE_INFO_EX2

impl Debug for MSV1_0_SUBAUTH_REQUEST

impl Debug for MEM_LARGE_DES

impl Debug for ID3D12CommandQueue

impl Debug for SCROLLBARINFO

impl Debug for ISpPhrase

impl Debug for NUMBERFMTA

impl Debug for IDirect3DVertexDeclaration9

impl Debug for ITransferMediumItem

impl Debug for HTTP_VERB

impl Debug for ICategoryProvider

impl Debug for D3D12_UNORDERED_ACCESS_VIEW_DESC

impl Debug for IUserNotification2

impl Debug for KERB_PURGE_KDC_PROXY_CACHE_REQUEST

impl Debug for SHELL_UI_COMPONENT

impl Debug for CONSOLE_HISTORY_INFO

impl Debug for D3D11_TEX2D_VDOV

impl Debug for DISPID_SpeechDataKey

impl Debug for VSS_FILE_RESTORE_STATUS

impl Debug for IObjectWithSelection

impl Debug for LVHITTESTINFO

impl Debug for SPWORDPRONUNCIATIONLIST

impl Debug for ACCESS_INFO_0

impl Debug for ID3D12Resource

impl Debug for HTTP_UNKNOWN_HEADER

impl Debug for IMAGELISTDRAWPARAMS

impl Debug for D3D12_DEPTH_WRITE_MASK

impl Debug for INFCONTEXT

impl Debug for MSV1_0_PASSTHROUGH_REQUEST

impl Debug for NET_DISPLAY_MACHINE

impl Debug for D3D12_RESOURCE_BARRIER_FLAGS

impl Debug for ID3D11CryptoSession

impl Debug for MIDIHDR

impl Debug for XINPUT_STATE

impl Debug for CRYPT_AES_128_KEY_STATE

impl Debug for D3DCLIPSTATUS9

impl Debug for WICProgressOperation

impl Debug for CERT_RDN

impl Debug for SPSERIALIZEDEVENT

impl Debug for LOGBRUSH

impl Debug for ENHMETARECORD

impl Debug for RTL_CONDITION_VARIABLE

impl Debug for D3D11_BUFFER_RTV

impl Debug for D3D12_PRIMITIVE_TOPOLOGY_TYPE

impl Debug for D3D_PRIMITIVE

impl Debug for D3D12_VIEWPORT

impl Debug for MIDIOUTCAPSW

impl Debug for ID3D11ShaderReflectionConstantBuffer

impl Debug for TCITEMHEADERW

impl Debug for POLICY_DEFAULT_QUOTA_INFO

impl Debug for D2D1_BRUSH_PROPERTIES

impl Debug for DSROLE_PRIMARY_DOMAIN_INFO_BASIC

impl Debug for SPFILEMODE

impl Debug for SP_PROPSHEETPAGE_REQUEST

impl Debug for DISPID_SpeechRecognizerStatus

impl Debug for GRADIENT_RECT

impl Debug for FDE_OVERWRITE_RESPONSE

impl Debug for GROUP_USERS_INFO_0

impl Debug for KERB_SETPASSWORD_REQUEST

impl Debug for IMAGEINFO

impl Debug for D2D_RECT_U

impl Debug for WAVEFORMATEX

impl Debug for KERB_QUERY_KDC_PROXY_CACHE_REQUEST

impl Debug for LVFOOTERITEM

impl Debug for CERT_SIGNED_CONTENT_INFO

impl Debug for FINDEX_INFO_LEVELS

impl Debug for ANON_OBJECT_HEADER_V2

impl Debug for WICPngHistProperties

impl Debug for MSV1_0_AV_PAIR

impl Debug for HEAP_OPTIMIZE_RESOURCES_INFORMATION

impl Debug for WSAMSG

impl Debug for RECTL

impl Debug for D3D12_SHADER_MIN_PRECISION_SUPPORT

impl Debug for IInternetSecurityManager

impl Debug for FILEMUIINFO

impl Debug for NMPGHOTITEM

impl Debug for D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_OUTPUT

impl Debug for D3D11_VIDEO_PROCESSOR_FORMAT_CAPS

impl Debug for IParentAndItem

impl Debug for SPEVENTLPARAMTYPE

impl Debug for D3D_PARAMETER_FLAGS

impl Debug for PSAPI_WORKING_SET_EX_INFORMATION

impl Debug for TrustLevel

impl Debug for CALLCONV

impl Debug for SECURITY_LOGON_SESSION_DATA

impl Debug for KERB_QUERY_BINDING_CACHE_RESPONSE

impl Debug for D3D12_CROSS_NODE_SHARING_TIER

impl Debug for COINSTALLER_CONTEXT_DATA

impl Debug for IShellMenuCallback

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE_INPUT

impl Debug for D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_OUTPUT

impl Debug for DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS

impl Debug for ID3D12QueryHeap

impl Debug for IInputObjectSite

impl Debug for PHONETICALPHABET

impl Debug for HTTPAPI_VERSION

impl Debug for SP_ENABLECLASS_PARAMS

impl Debug for SecPkgContext_NamesA

impl Debug for SecPkgContext_AccessToken

impl Debug for PROCESSOR_CACHE_TYPE

impl Debug for ID2D1Factory

impl Debug for CMSG_SIGNER_ENCODE_INFO

impl Debug for DISPIDSPRG

impl Debug for BCryptBuffer

impl Debug for NMREBARAUTOBREAK

impl Debug for NETRESOURCEW

impl Debug for SPDATAKEYLOCATION

impl Debug for IEnumShellItems

impl Debug for PROC_THREAD_ATTRIBUTE_LIST

impl Debug for STREAM_SEEK

impl Debug for DWRITE_SHAPING_TEXT_PROPERTIES

impl Debug for SpeechRecoEvents

impl Debug for CRYPT_CONTEXT_FUNCTION_PROVIDERS

impl Debug for IResultsFolder

impl Debug for LSA_STRING

impl Debug for CDCONTROLSTATE

impl Debug for D3D11_TEX2D_VPOV

impl Debug for DSCAPS

impl Debug for DISPID_SpeechBaseStream

impl Debug for IDropTargetHelper

impl Debug for EXCEPTION_RECORD

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGURESHAREDRESOURCE

impl Debug for SEC_WINNT_AUTH_PACKED_CREDENTIALS

impl Debug for D3D12_TEXCUBE_ARRAY_SRV

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_PROTECTION_INPUT

impl Debug for IWICBitmapSource

impl Debug for NMREBARSPLITTER

impl Debug for D3DVERTEXBUFFER_DESC

impl Debug for D3DDEVICE_CREATION_PARAMETERS

impl Debug for VARIANT

impl Debug for ID2D1GradientStopCollection

impl Debug for D2D1_FIGURE_BEGIN

impl Debug for UUID_VECTOR

impl Debug for SecBufferDesc

impl Debug for WICBitmapPattern

impl Debug for IVssWMDependency

impl Debug for D3DRENDERSTATETYPE

impl Debug for ID3D11AuthenticatedChannel

impl Debug for D3D12_INDIRECT_ARGUMENT_TYPE

impl Debug for UMS_SYSTEM_THREAD_INFORMATION

impl Debug for TVITEMPART

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_INPUT

impl Debug for WICJpegChrominanceProperties

impl Debug for IFolderBandPriv

impl Debug for HTTP_REQUEST_AUTH_TYPE

impl Debug for CRYPT_HASH_MESSAGE_PARA

impl Debug for CSADDR_INFO

impl Debug for NMLVDISPINFOA

impl Debug for D3D12_TEX2D_ARRAY_UAV

impl Debug for MEMORY_BASIC_INFORMATION

impl Debug for DXGI_SWAP_EFFECT

impl Debug for D3D11_COUNTER_DESC

impl Debug for TRUSTED_PASSWORD_INFO

impl Debug for protoent

impl Debug for SpeechRecoContextState

impl Debug for SecPkgContext_EarlyStart

impl Debug for D3D12_COMPARISON_FUNC

impl Debug for STARTING_LCN_INPUT_BUFFER

impl Debug for ID3D11ClassInstance

impl Debug for IErrorLog

impl Debug for M128A

impl Debug for D3D12_FEATURE

impl Debug for D3D12_RESOURCE_ALIASING_BARRIER

impl Debug for PROCESS_HEAP_ENTRY_Region

impl Debug for CERT_SELECT_CHAIN_PARA

impl Debug for D3D11_TEX2D_ARRAY_VPOV

impl Debug for IMAGE_NT_HEADERS64

impl Debug for D3D11_TEXTURE1D_DESC

impl Debug for D2D1_TRIANGLE

impl Debug for IDWriteFontCollection

impl Debug for ISpeechWaveFormatEx

impl Debug for UNIVERSAL_NAME_INFOW

impl Debug for CRYPT_ENCRYPTED_PRIVATE_KEY_INFO

impl Debug for NMTVCUSTOMDRAW

impl Debug for D3D11_BUFFEREX_SRV

impl Debug for SPSHORTCUTPAIR

impl Debug for D3D11_FEATURE_DATA_ARCHITECTURE_INFO

impl Debug for D3DCONTENTPROTECTIONCAPS

impl Debug for SOURCE_MEDIA_A

impl Debug for CURRENCYFMTW

impl Debug for TVINSERTSTRUCTA

impl Debug for IRQ_DES_64

impl Debug for NMHEADERW

impl Debug for IApplicationAssociationRegistrationUI

impl Debug for D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE_OUTPUT

impl Debug for CM_NOTIFY_EVENT_DATA_DeviceInstance

impl Debug for ACTION_HEADER

impl Debug for KERB_CERTIFICATE_INFO_TYPE

impl Debug for WICProgressNotification

impl Debug for SYSTEM_INFO

impl Debug for INVOKEKIND

impl Debug for ID3D11ComputeShader

impl Debug for D3D12_TEX1D_SRV

impl Debug for DXGI_OUTDUPL_POINTER_SHAPE_INFO

impl Debug for NCCALCSIZE_PARAMS

impl Debug for IEnumExtraSearch

impl Debug for INameSpaceTreeControl

impl Debug for FLAGGED_WORD_BLOB

impl Debug for NMBCHOTITEM

impl Debug for HIDP_RANGE_STRUCT

impl Debug for DWRITE_INLINE_OBJECT_METRICS

impl Debug for LSA_FOREST_TRUST_DOMAIN_INFO

impl Debug for ID3D11InputLayout

impl Debug for ISpNotifyCallback

impl Debug for ISpStreamFormat

impl Debug for PRINTER_OPTIONSW

impl Debug for HTTP_LOG_DATA

impl Debug for COLORSCHEME

impl Debug for D3D11_VIDEO_PROCESSOR_FILTER_CAPS

impl Debug for D3D11_DEPTH_STENCIL_VIEW_DESC

impl Debug for D2D_SIZE_U

impl Debug for TP_WAIT

impl Debug for IModalWindow

impl Debug for DFS_SITELIST_INFO

impl Debug for D2D1_LAYER_OPTIONS

impl Debug for D3D11_DEPTH_WRITE_MASK

impl Debug for SecPkgCredentials_KdcProxySettingsW

impl Debug for SpeechTokenContext

impl Debug for IFolderFilterSite

impl Debug for ISpRecoResult2

impl Debug for IStreamUnbufferedInfo

impl Debug for ID2D1BitmapBrush

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYDEVICEHANDLE_OUTPUT

impl Debug for D3D_SHADER_INPUT_TYPE

impl Debug for WSACOMPLETION_Event

impl Debug for D3D11_VIDEO_PROCESSOR_FILTER_RANGE

impl Debug for TASKDIALOG_ICON_ELEMENTS

impl Debug for WIC8BIMIptcProperties

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE_INPUT

impl Debug for SpeechVisemeType

impl Debug for XFORM

impl Debug for ITypeFactory

impl Debug for IFileDialog

impl Debug for FILE_ID_128

impl Debug for IDirect3DDevice9Video

impl Debug for SecPkgContext_Certificates

impl Debug for RPC_BINDING_VECTOR

impl Debug for CLAIM_SECURITY_ATTRIBUTE_V1

impl Debug for LOCALGROUP_INFO_1

impl Debug for D3DVERTEXELEMENT9

impl Debug for GROUP_USERS_INFO_1

impl Debug for IMAGE_SECTION_HEADER

impl Debug for D3D11_VIDEO_PROCESSOR_COLOR_SPACE

impl Debug for TTTOOLINFOA

impl Debug for ICreateTypeInfo

impl Debug for D3D12_PACKED_MIP_INFO

impl Debug for KERB_QUERY_TKT_CACHE_RESPONSE

impl Debug for D3D11_VIEWPORT

impl Debug for CREATEFILE2_EXTENDED_PARAMETERS

impl Debug for RPC_SECURITY_QOS_V4_W_union

impl Debug for MOVE_FILE_DATA

impl Debug for POLICY_INFORMATION_CLASS

impl Debug for TP_CALLBACK_PRIORITY

impl Debug for QUOTA_LIMITS_EX

impl Debug for WINHTTP_WEB_SOCKET_BUFFER_TYPE

impl Debug for D3D12_GPU_DESCRIPTOR_HANDLE

impl Debug for INameSpaceTreeControl2

impl Debug for IApplicationDesignModeSettings

impl Debug for ID3D11DeviceChild

impl Debug for D3D11_VIDEO_PROCESSOR_FEATURE_CAPS

impl Debug for KERB_AUTH_DATA

impl Debug for IShellLinkW

impl Debug for WINDOW_BUFFER_SIZE_RECORD

impl Debug for NMTVSTATEIMAGECHANGING

impl Debug for D3D12_RLDO_FLAGS

impl Debug for SPWAVEFORMATTYPE

impl Debug for ID2D1LinearGradientBrush

impl Debug for D3D10_SHADER_INPUT_BIND_DESC

impl Debug for LIST_ENTRY64

impl Debug for CRYPT_TIMESTAMP_PARA

impl Debug for VARENUM

impl Debug for ID3D12RootSignature

impl Debug for KERB_REFRESH_SCCRED_REQUEST

impl Debug for RPC_SECURITY_QOS

impl Debug for D3D11_RENDER_TARGET_BLEND_DESC

impl Debug for ID2D1PathGeometry

impl Debug for SPAUDIOSTATE

impl Debug for SpeechBookmarkOptions

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_ConstantBufferView

impl Debug for LVBKIMAGEA

impl Debug for D2D1_RENDER_TARGET_PROPERTIES

impl Debug for IDXGIFactory2

impl Debug for RPC_SECURITY_QOS_V3_A

impl Debug for D3D12_MESSAGE_CATEGORY

impl Debug for DSROLE_OPERATION_STATE_INFO

impl Debug for D3DDEVINFO_RESOURCEMANAGER

impl Debug for IEnumSpObjectTokens

impl Debug for D3DDEBUGMONITORTOKENS

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYPROTECTION_OUTPUT

impl Debug for MSV1_0_SUBAUTH_LOGON

impl Debug for NMREBAR

impl Debug for NMTBGETINFOTIPA

impl Debug for IDWriteFactory

impl Debug for CERT_CHAIN_ENGINE_CONFIG

impl Debug for MCHITTESTINFO

impl Debug for HIDP_REPORT_TYPE

impl Debug for LOCKTYPE

impl Debug for DSROLE_MACHINE_ROLE

impl Debug for DISPID_SpeechObjectTokenCategory

impl Debug for ITypeMarshal

impl Debug for DWRITE_OVERHANG_METRICS

impl Debug for CRL_CONTEXT

impl Debug for CERT_CREDENTIAL_INFO

impl Debug for IDesktopGadget

impl Debug for SCHANNEL_ALERT_TOKEN

impl Debug for WICPngIccpProperties

impl Debug for D3D10_SIGNATURE_PARAMETER_DESC

impl Debug for IContextMenu2

impl Debug for DWRITE_TEXT_METRICS

impl Debug for D3DSHADER_PARAM_REGISTER_TYPE

impl Debug for KERB_CRYPTO_KEY

impl Debug for BCRYPT_DH_PARAMETER_HEADER

impl Debug for MOVE_FILE_RECORD_DATA

impl Debug for D3D12_TILED_RESOURCE_COORDINATE

impl Debug for KERB_CHANGEPASSWORD_REQUEST

impl Debug for WINHTTP_PROXY_RESULT_ENTRY

impl Debug for GROUP_INFO_1002

impl Debug for ID3D12DebugCommandQueue

impl Debug for USER_INFO_1020

impl Debug for KERB_PURGE_TKT_CACHE_EX_REQUEST

impl Debug for SERVICE_STATUS

impl Debug for NMLVFINDITEMW

impl Debug for ID3D11VideoProcessor

impl Debug for D2D_MATRIX_3X2_F

impl Debug for CERT_EXTENSIONS

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_OUTPUT

impl Debug for D3D12_TEXTURE_COPY_LOCATION

impl Debug for IActionProgress

impl Debug for D3D11_VIDEO_PROCESSOR_FILTER

impl Debug for D2D1_DRAWING_STATE_DESCRIPTION

impl Debug for TP_CLEANUP_GROUP

impl Debug for LVGROUPMETRICS

impl Debug for NMTBSAVE

impl Debug for STATURL

impl Debug for NMLVSCROLL

impl Debug for TBSAVEPARAMSA

impl Debug for DFS_INFO_6

impl Debug for SPPHRASE_53

impl Debug for DWRITE_NUMBER_SUBSTITUTION_METHOD

impl Debug for RPC_SECURITY_QOS_V3_W

impl Debug for HANDLETABLE

impl Debug for SPGRAMMAROPTIONS

impl Debug for PRINTPAGERANGE

impl Debug for D3D12_SUBRESOURCE_FOOTPRINT

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_V2_A

impl Debug for OFNOTIFYEXW

impl Debug for LSA_FOREST_TRUST_RECORD

impl Debug for HEAP_INFORMATION_CLASS

impl Debug for RPC_HTTP_REDIRECTOR_STAGE

impl Debug for D3D11_RTV_DIMENSION

impl Debug for SP_DRVINSTALL_PARAMS

impl Debug for PROV_ENUMALGS

impl Debug for CERT_OR_CRL_BLOB

impl Debug for WINHTTP_PROXY_RESULT

impl Debug for D3D12_DESCRIPTOR_HEAP_TYPE

impl Debug for IDXGIDevice

impl Debug for CRYPTPROTECT_PROMPTSTRUCT

impl Debug for D3DSHADER_INSTRUCTION_OPCODE_TYPE

impl Debug for D3D_FEATURE_LEVEL

impl Debug for IPreviewHandlerFrame

impl Debug for D3D12_CACHED_PIPELINE_STATE

impl Debug for NMDATETIMESTRINGW

impl Debug for VSS_RESTORE_TARGET

impl Debug for IDXGIDecodeSwapChain

impl Debug for CREDENTIAL_TARGET_INFORMATIONA

impl Debug for SPVPRIORITY

impl Debug for SLIST_HEADER

impl Debug for CERT_EXTENSION

impl Debug for BLENDFUNCTION

impl Debug for D3D_NAME

impl Debug for SecPkgContext_TargetInformation

impl Debug for IVssBackupComponents

impl Debug for TYPEKIND

impl Debug for ID2D1RenderTarget

impl Debug for TVGETITEMPARTRECTINFO

impl Debug for ISymUnmanagedBinder2

impl Debug for MSV1_0_SUPPLEMENTAL_CREDENTIAL

impl Debug for IPreviewHandlerVisuals

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERY_OUTPUT

impl Debug for IEnumSTATURL

impl Debug for GROUP_INFO_0

impl Debug for CERT_REVOCATION_INFO

impl Debug for D3D12_STATIC_BORDER_COLOR

impl Debug for MSV1_0_NTLM3_RESPONSE

impl Debug for CRYPT_TIMESTAMP_INFO

impl Debug for D3D11_VIDEO_COLOR

impl Debug for D3DRESOURCESTATS

impl Debug for ICustomDestinationList

impl Debug for CRYPT_DECRYPT_MESSAGE_PARA

impl Debug for DXGI_OVERLAY_SUPPORT_FLAG

impl Debug for CRYPT_CONTEXTS

impl Debug for KERB_ADD_CREDENTIALS_REQUEST

impl Debug for IVssWriterComponents

impl Debug for MONITORINFOEXW

impl Debug for ISpMMSysAudio

impl Debug for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_NumaNode

impl Debug for POLICY_LSA_SERVER_ROLE

impl Debug for DEVPROPKEY

impl Debug for IDWriteRenderingParams

impl Debug for IDWriteTypography

impl Debug for ADDRINFOEXW

impl Debug for MEM_LARGE_RESOURCE

impl Debug for DFS_INFO_104

impl Debug for D3D11_SAMPLER_DESC

impl Debug for WICJpegLuminanceProperties

impl Debug for MINMAXINFO

impl Debug for USER_ACTIVITY_PRESENCE

impl Debug for WICImageParameters

impl Debug for D3D11_BUFFER_UAV

impl Debug for DWRITE_SHAPING_GLYPH_PROPERTIES

impl Debug for PSS_WALK_INFORMATION_CLASS

impl Debug for IMAGE_ROM_HEADERS

impl Debug for NMMOUSE

impl Debug for IDXGIDevice1

impl Debug for CERT_REQUEST_INFO

impl Debug for SpeechTokenShellFolder

impl Debug for PSAPI_WORKING_SET_BLOCK

impl Debug for IDXGIAdapter3

impl Debug for STACKFRAME64

impl Debug for SpeechVisemeFeature

impl Debug for DFS_INFO_8

impl Debug for DXGI_SWAP_CHAIN_DESC1

impl Debug for ISpRecoContext2

impl Debug for BCRYPT_DSA_PARAMETER_HEADER

impl Debug for DISPID_SpeechPhoneConverter

impl Debug for IObjectProvider

impl Debug for D3D11_SHADER_VARIABLE_DESC

impl Debug for IMAGE_FUNCTION_ENTRY64

impl Debug for SEC_WINNT_CREDUI_CONTEXT

impl Debug for CM_NOTIFY_EVENT_DATA

impl Debug for SESSION_HEADER

impl Debug for D3D11_SIGNATURE_PARAMETER_DESC

impl Debug for ID3D12DescriptorHeap

impl Debug for D3DSAMPLER_TEXTURE_TYPE

impl Debug for D3D_TESSELLATOR_DOMAIN

impl Debug for CONSOLE_SCREEN_BUFFER_INFO

impl Debug for NMTVDISPINFOW

impl Debug for COPYFILE2_MESSAGE_StreamFinished

impl Debug for SIP_INDIRECT_DATA

impl Debug for HTTP_COOKED_URL

impl Debug for MEM_RESOURCE

impl Debug for HTTP_SERVICE_BINDING_A

impl Debug for CPINFO

impl Debug for GCP_RESULTSW

impl Debug for COMPARTMENT_ID

impl Debug for NMTBDISPINFOA

impl Debug for RTL_UMS_THREAD_INFO_CLASS

impl Debug for SECPKG_ATTR_LCT_STATUS

impl Debug for ISpNotifySource

impl Debug for D3D12_PARAMETER_DESC

impl Debug for D3D11_VIDEO_PROCESSOR_ROTATION

impl Debug for D3D12_TEX3D_SRV

impl Debug for FIXED

impl Debug for MEMORYSTATUSEX

impl Debug for DISPID_SpeechLexiconWords

impl Debug for IShellTaskScheduler

impl Debug for ISuspensionDependencyManager

impl Debug for D3D12_COMMAND_SIGNATURE_DESC

impl Debug for IMAGE_ROM_OPTIONAL_HEADER

impl Debug for ICommDlgBrowser2

impl Debug for D3D12_UAV_DIMENSION

impl Debug for D3D12_SHADER_VERSION_TYPE

impl Debug for TBINSERTMARK

impl Debug for ISpPhoneticAlphabetSelection

impl Debug for ID2D1Bitmap

impl Debug for CERT_CHAIN_POLICY_STATUS

impl Debug for NMKEY

impl Debug for CHARSETINFO

impl Debug for IDWriteFontFileLoader

impl Debug for SPADAPTATIONSETTINGS

impl Debug for IMAGE_OPTIONAL_HEADER32

impl Debug for IShellItemResources

impl Debug for ID3D11Texture2D

impl Debug for LSA_UNICODE_STRING

impl Debug for D3DFILLMODE

impl Debug for USER_INFO_4

impl Debug for D3DBASISTYPE

impl Debug for IObjectWithBackReferences

impl Debug for D3D12_TEX1D_RTV

impl Debug for GROUP_INFO_1005

impl Debug for D3D12_SHADER_DESC

impl Debug for SPRULE

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERY_INPUT

impl Debug for FDE_SHAREVIOLATION_RESPONSE

impl Debug for SCHANNEL_SESSION_TOKEN

impl Debug for IFileSystemBindData2

impl Debug for D3D12_FUNCTION_DESC

impl Debug for KERB_SETPASSWORD_EX_REQUEST

impl Debug for IStream

impl Debug for D3D10_SHADER_BUFFER_DESC

impl Debug for CREDENTIAL_TARGET_INFORMATIONW

impl Debug for SIGDN

impl Debug for HTTP_CHANNEL_BIND_INFO

impl Debug for ISearchFolderItemFactory

impl Debug for SPPHRASE

impl Debug for PARAMDESCEX

impl Debug for D2D1_QUADRATIC_BEZIER_SEGMENT

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUID_INPUT

impl Debug for D3D11_VIDEO_PROCESSOR_CONTENT_DESC

impl Debug for ICommDlgBrowser3

impl Debug for JOBOBJECT_EXTENDED_LIMIT_INFORMATION

impl Debug for D2D1_SWEEP_DIRECTION

impl Debug for D2D1_ARC_SIZE

impl Debug for IUserAccountChangeCallback

impl Debug for WINHTTP_ASYNC_RESULT

impl Debug for IAutoCompleteDropDown

impl Debug for SIZE

impl Debug for SpeechLoadOption

impl Debug for D3D11_RASTERIZER_DESC

impl Debug for WIN32_FILE_ATTRIBUTE_DATA

impl Debug for D3D11_VIDEO_DECODER_BUFFER_DESC

impl Debug for RTL_CRITICAL_SECTION

impl Debug for SQL_INTERVAL_STRUCT

impl Debug for LOGICAL_PROCESSOR_RELATIONSHIP

impl Debug for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG

impl Debug for D3D11_COMPARISON_FUNC

impl Debug for CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE

impl Debug for EXIT_PROCESS_DEBUG_INFO

impl Debug for D3D12_PIPELINE_STATE_FLAGS

impl Debug for DOCINFOA

impl Debug for ISpObjectTokenCategory

impl Debug for CONNECTION_DES

impl Debug for CONNECTDLGSTRUCTA

impl Debug for IOpenSearchSource

impl Debug for IDragSourceHelper2

impl Debug for PROCESS_MEMORY_COUNTERS

impl Debug for CRYPT_KEY_VERIFY_MESSAGE_PARA

impl Debug for DXGI_USAGE

impl Debug for D3DZBUFFERTYPE

impl Debug for USER_INFO_24

impl Debug for ISpRecognizer2

impl Debug for ADDRINFOEXA

impl Debug for ICONINFO

impl Debug for IDXGIAdapter1

impl Debug for D3D12_CLEAR_VALUE

impl Debug for CMS_KEY_INFO

impl Debug for SICHINTF

impl Debug for NET_DISPLAY_USER

impl Debug for CERT_TRUST_LIST_INFO

impl Debug for USER_INFO_3

impl Debug for SPSTREAMFORMAT

impl Debug for DXGI_GRAPHICS_PREEMPTION_GRANULARITY

impl Debug for UNICODE_STRING

impl Debug for LSA_OBJECT_ATTRIBUTES

impl Debug for LUID

impl Debug for D3D12_INDEX_BUFFER_STRIP_CUT_VALUE

impl Debug for NET_VALIDATE_PASSWORD_TYPE

impl Debug for NMTVDISPINFOEXW

impl Debug for ICDBurn

impl Debug for SCARD_IO_REQUEST

impl Debug for LVITEMW

impl Debug for D3DPRESENT_PARAMETERS

impl Debug for IUrlHistoryNotify

impl Debug for KERB_TRANSFER_CRED_REQUEST

impl Debug for HTTP_SERVICE_CONFIG_URLACL_PARAM

impl Debug for IVssWMFiledesc

impl Debug for SpeechGrammarWordType

impl Debug for COPYFILE2_MESSAGE_StreamStarted

impl Debug for D3D12_HEAP_DESC

impl Debug for SPLOADOPTIONS

impl Debug for ID3D12Object

impl Debug for BUTTON_SPLITINFO

impl Debug for XINPUT_GAMEPAD

impl Debug for USER_INFO_2

impl Debug for WSATHREADID

impl Debug for KERB_CERTIFICATE_UNLOCK_LOGON

impl Debug for DWRITE_UNDERLINE

impl Debug for VARDESC

impl Debug for D3DLIGHT9

impl Debug for D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS

impl Debug for D2D1_ALPHA_MODE

impl Debug for POLICY_AUDIT_LOG_INFO

impl Debug for IDXGIOutput3

impl Debug for HIDP_DATA

impl Debug for IShellMenu

impl Debug for NMCUSTOMSPLITRECTINFO

impl Debug for IEnumReadyCallback

impl Debug for HEAPENTRY32

impl Debug for FILE_ALIGNMENT_INFO

impl Debug for NMTREEVIEWA

impl Debug for READER_SEL_REQUEST_SerialNumberParameter

impl Debug for SAFEARR_HAVEIID

impl Debug for IDWriteFontCollectionLoader

impl Debug for KERB_SMART_CARD_LOGON

impl Debug for POLICY_AUDIT_CATEGORIES_INFO

impl Debug for SecPkgContext_Sizes

impl Debug for POLICY_LSA_SERVER_ROLE_INFO

impl Debug for IDeskBandInfo

impl Debug for SCRIPT_ANALYSIS

impl Debug for ITaskbarList4

impl Debug for TP_POOL_STACK_INFORMATION

impl Debug for COMPAREITEMSTRUCT

impl Debug for IEnumExplorerCommand

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESSCOUNT_OUTPUT

impl Debug for D3D11_TEX1D_ARRAY_RTV

impl Debug for WSAECOMPARATOR

impl Debug for D3D12_FEATURE_DATA_FORMAT_SUPPORT

impl Debug for SCRIPT_LOGATTR

impl Debug for HIDP_BUTTON_CAPS

impl Debug for HTTPSPolicyCallbackData

impl Debug for KERB_INTERACTIVE_LOGON

impl Debug for D3D12_TEX2DMS_RTV

impl Debug for INewWindowManager

impl Debug for NMCHAR

impl Debug for ID3D11ModuleInstance

impl Debug for DWRITE_STRIKETHROUGH

impl Debug for D3D11_TEX1D_ARRAY_DSV

impl Debug for ID2D1TessellationSink

impl Debug for D3D11_FEATURE

impl Debug for IShellItem

impl Debug for D3D12_INPUT_LAYOUT_DESC

impl Debug for IDWriteFontFile

impl Debug for NEGOTIATE_CALLER_NAME_RESPONSE

impl Debug for IDWriteFontFileStream

impl Debug for GROUP_INFO_3

impl Debug for COMSTAT

impl Debug for DEVPROPERTY

impl Debug for DWRITE_MEASURING_MODE

impl Debug for D3D11_AUTHENTICATED_QUERY_PROTECTION_OUTPUT

impl Debug for D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS

impl Debug for MENUITEMINFOA

impl Debug for RSAPUBKEY

impl Debug for WSACOMPLETION_WindowMessage

impl Debug for IPublishingWizard

impl Debug for SPDISPLYATTRIBUTES

impl Debug for CERT_SELECT_CRITERIA

impl Debug for HTTP_DATA_CHUNK_FromMemory

impl Debug for TRUSTED_DOMAIN_INFORMATION_EX2

impl Debug for SecHandle

impl Debug for STARTING_VCN_INPUT_BUFFER

impl Debug for SecPkgContext_PackageInfoA

impl Debug for IShellView2

impl Debug for D3DSHADER_ADDRESSMODE_TYPE

impl Debug for NMHDR

impl Debug for REMOTE_NAME_INFOA

impl Debug for D2D_POINT_2U

impl Debug for D2D1_FILL_MODE

impl Debug for BCRYPT_DSA_KEY_BLOB_V2

impl Debug for LSA_TRANSLATED_SID2

impl Debug for D3D11_UNORDERED_ACCESS_VIEW_DESC

impl Debug for POINTL

impl Debug for USER_MODALS_INFO_3

impl Debug for D2D1_BITMAP_INTERPOLATION_MODE

impl Debug for WICPlanarOptions

impl Debug for FILE_STORAGE_INFO

impl Debug for RPC_INTERFACE_TEMPLATEW

impl Debug for CM_NOTIFY_EVENT_DATA_DeviceInterface

impl Debug for CERT_TRUST_STATUS

impl Debug for D3D11_VIDEO_DECODER_CONFIG

impl Debug for CTL_VERIFY_USAGE_STATUS

impl Debug for GROUP_INFO_2

impl Debug for DEVMODEA

impl Debug for D3DDECLMETHOD

impl Debug for PROCESS_HEAP_ENTRY

impl Debug for LVFOOTERINFO

impl Debug for D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_INPUT

impl Debug for OLECMD

impl Debug for MONITOR_DISPLAY_STATE

impl Debug for WAVEOUTCAPSW

impl Debug for NMPGCALCSIZE

impl Debug for IVssBackupComponentsEx2

impl Debug for D3D11_TEX1D_UAV

impl Debug for ISpeechAudioBufferInfo

impl Debug for ANON_OBJECT_HEADER

impl Debug for BUSNUMBER_DES

impl Debug for RO_INIT_TYPE

impl Debug for IContactManagerInterop

impl Debug for ID2D1DCRenderTarget

impl Debug for D3D11_VIDEO_DECODER_BUFFER_TYPE

impl Debug for SP_DEVINFO_DATA

impl Debug for BCRYPT_ALGORITHM_IDENTIFIER

impl Debug for USER_INFO_1024

impl Debug for IDeskBar

impl Debug for ID3D12InfoQueue

impl Debug for CM_NOTIFY_FILTER_TYPE

impl Debug for D3DSTENCILOP

impl Debug for KNONVOLATILE_CONTEXT_POINTERS_u1

impl Debug for WIC8BIMIptcDigestProperties

impl Debug for USER_MODALS_INFO_1

impl Debug for LOCALGROUP_MEMBERS_INFO_2

impl Debug for SCRIPT_TABDEF

impl Debug for DOMAIN_CONTROLLER_INFOA

impl Debug for SecPkgInfoW

impl Debug for ISpeechAudioStatus

impl Debug for D3DDECLTYPE

impl Debug for OBJECTID

impl Debug for D3DSHADER_PARAM_SRCMOD_TYPE

impl Debug for D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_OUTPUT

impl Debug for D3D12_TEX1D_DSV

impl Debug for D3D11_BUS_TYPE

impl Debug for D3DSHADER_MIN_PRECISION

impl Debug for KERB_S4U_LOGON

impl Debug for DFS_INFO_50

impl Debug for HTTP_RESPONSE_INFO_TYPE

impl Debug for PSHNOTIFY

impl Debug for D3DDEGREETYPE

impl Debug for DISPID_SpeechGrammarRuleStateTransition

impl Debug for SecPkgContext_ProtoInfoA

impl Debug for IMAGE_COFF_SYMBOLS_HEADER

impl Debug for NMDATETIMEWMKEYDOWNA

impl Debug for USER_INFO_23

impl Debug for ISpPhraseAlt

impl Debug for DEVPROPCOMPKEY

impl Debug for D3D11_QUERY_MISC_FLAG

impl Debug for CRYPT_HASH_INFO

impl Debug for D3D11_VIDEO_COLOR_RGBA

impl Debug for ABCFLOAT

impl Debug for IDirect3DSurface9

impl Debug for USER_INFO_1017

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_ShaderResourceView

impl Debug for KERB_EXTERNAL_NAME

impl Debug for D3D11_VPIV_DIMENSION

impl Debug for MOUSE_EVENT_RECORD

impl Debug for LOGON_HOURS

impl Debug for D3DBUSTYPE

impl Debug for ERROR_LOG

impl Debug for USER_MODALS_INFO_1003

impl Debug for REBARBANDINFOW

impl Debug for IFolderViewOptions

impl Debug for TBADDBITMAP

impl Debug for DEVMODEW

impl Debug for POLICY_DNS_DOMAIN_INFO

impl Debug for CERT_INFO

impl Debug for SecPkgContext_StreamSizes

impl Debug for IVssExamineWriterMetadataEx

impl Debug for SCROLLINFO

impl Debug for TIME_ZONE_INFORMATION

impl Debug for D3D11_TEX2D_ARRAY_UAV

impl Debug for IExplorerCommandProvider

impl Debug for NETSETUP_JOIN_STATUS

impl Debug for WSABUF

impl Debug for POLICY_DOMAIN_EFS_INFO

impl Debug for DEVPRIVATE_RANGE

impl Debug for D2D1_ARC_SEGMENT

impl Debug for D3D12_FILTER_REDUCTION_TYPE

impl Debug for D3D12_MESSAGE_ID

impl Debug for CRYPT_KEY_PROV_INFO

impl Debug for NMDATETIMEWMKEYDOWNW

impl Debug for RPC_SECURITY_QOS_V2_A_union

impl Debug for D3D11_CONTENT_PROTECTION_CAPS

impl Debug for D3D12_RASTERIZER_DESC

impl Debug for VALENTA

impl Debug for ISpSerializeState

impl Debug for NMCOMBOBOXEXA

impl Debug for D3D11_VIDEO_PROCESSOR_OUTPUT_RATE

impl Debug for KBDLLHOOKSTRUCT

impl Debug for D3DSCANLINEORDERING

impl Debug for ID3D11GeometryShader

impl Debug for SecPkgContext_LastClientTokenStatus

impl Debug for HTTP_TRANSPORT_ADDRESS

impl Debug for CRYPT_ALGORITHM_IDENTIFIER

impl Debug for D3DVECTOR

impl Debug for ID3D11Module

impl Debug for D3D11_SHADER_RESOURCE_VIEW_DESC

impl Debug for RPC_BINDING_HANDLE_SECURITY_V1_A

impl Debug for NMLVFINDITEMA

impl Debug for BLOB

impl Debug for HTTP_SERVICE_CONFIG_SSL_QUERY

impl Debug for D3D11_VIDEO_FRAME_FORMAT

impl Debug for IFileIsInUse

impl Debug for CorSymAddrKind

impl Debug for D3D12_ROOT_SIGNATURE_FLAGS

impl Debug for LOCALGROUP_USERS_INFO_0

impl Debug for D3D11_QUERY_DATA_TIMESTAMP_DISJOINT

impl Debug for IShellLinkA

impl Debug for HTTP_SERVICE_BINDING_TYPE

impl Debug for D3D12_QUERY_HEAP_TYPE

impl Debug for KERB_S4U2PROXY_CRED

impl Debug for PIPE_ATTRIBUTE_TYPE

impl Debug for D3D12_TEX2DMS_ARRAY_SRV

impl Debug for D3D11_VIDEO_COLOR_YCbCrA

impl Debug for IExecuteCommand

impl Debug for D3DBACKBUFFER_TYPE

impl Debug for SCRIPT_GLYPHPROP

impl Debug for CRYPTCATSTORE

impl Debug for RPC_SECURITY_QOS_V4_A

impl Debug for DISPID_SpeechObjectToken

impl Debug for IContextMenuSite

impl Debug for LSA_FOREST_TRUST_BINARY_DATA

impl Debug for SecPkgContext_IssuerListInfoEx

impl Debug for CM_NOTIFY_FILTER_DeviceHandle

impl Debug for HTTP_SERVICE_BINDING_BASE

impl Debug for IUseToBrowseItem

impl Debug for ITypeLib2

impl Debug for DXGI_SCALING

impl Debug for RPC_SECURITY_QOS_V3_A_union

impl Debug for WICPngBkgdProperties

impl Debug for ISupportErrorInfo

impl Debug for D3D12_STENCIL_OP

impl Debug for NMPGSCROLL

impl Debug for D3D11_FILTER

impl Debug for IRemoteComputer

impl Debug for IStreamAsync

impl Debug for ISpeechAudioFormat

impl Debug for DISK_EXTENT

impl Debug for USER_INFO_1009

impl Debug for SecPkgContext_SupportedSignatures

impl Debug for D3D11_STANDARD_MULTISAMPLE_QUALITY_LEVELS

impl Debug for DATE_STRUCT

impl Debug for D3D_SHADER_VARIABLE_FLAGS

impl Debug for IDataTransferManagerInterop

impl Debug for NMHDDISPINFOA

impl Debug for D3D12_ROOT_SIGNATURE_DESC

impl Debug for SecPkgContext_LocalCredentialInfo

impl Debug for USERNAME_TARGET_CREDENTIAL_INFO

impl Debug for CREDENTIAL_ATTRIBUTEW

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_V2_W

impl Debug for IExplorerBrowserEvents

impl Debug for FUNCDESC

impl Debug for PDH_FMT_COUNTERVALUE

impl Debug for CRYPT_AES_256_KEY_STATE

impl Debug for POLICY_REPLICA_SOURCE_INFO

impl Debug for DS_DOMAIN_TRUSTSW

impl Debug for D2D1_DRAW_TEXT_OPTIONS

impl Debug for IDWriteTextRenderer

impl Debug for IDWritePixelSnapping

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_VertexBuffer

impl Debug for HTTP_SERVICE_CONFIG_SSL_KEY

impl Debug for D2D_VECTOR_3F

impl Debug for D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE

impl Debug for D3D12_FEATURE_DATA_D3D12_OPTIONS

impl Debug for IPackageDebugSettings

impl Debug for IDXGIDisplayControl

impl Debug for USER_INFO_20

impl Debug for SecPkgContext_CredentialNameA

impl Debug for IDirectSound

impl Debug for CONSOLE_FONT_INFO

impl Debug for ADDURL_FLAG

impl Debug for USER_MODALS_INFO_1006

impl Debug for TVITEMW

impl Debug for KERB_S4U2PROXY_CACHE_ENTRY_INFO

impl Debug for PERFORMANCE_INFORMATION

impl Debug for SEC_WINNT_AUTH_DATA_PASSWORD

impl Debug for HTTP_PROPERTY_FLAGS

impl Debug for HTTP_QOS_SETTING_INFO

impl Debug for IColumnManager

impl Debug for BUSNUMBER_RESOURCE

impl Debug for SCRIPT_DIGITSUBSTITUTE

impl Debug for HTTP_CACHE_POLICY

impl Debug for MEMORY_BASIC_INFORMATION32

impl Debug for IOpenControlPanel

impl Debug for D3D12_DISCARD_REGION

impl Debug for IDXGIDevice3

impl Debug for MSA_INFO_LEVEL

impl Debug for NETINFOSTRUCT

impl Debug for USAGE_AND_PAGE

impl Debug for ITrayDeskBand

impl Debug for D3D12_COMMAND_QUEUE_PRIORITY

impl Debug for KEY_EVENT_RECORD

impl Debug for D3D11_TEX2D_UAV

impl Debug for FILE_ALLOCATION_INFO

impl Debug for SESSION_BUFFER

impl Debug for D3D12_TEX2DMS_SRV

impl Debug for CRYPT_CONTEXT_CONFIG

impl Debug for USER_INFO_1005

impl Debug for ISpProperties

impl Debug for POWER_ACTION

impl Debug for IEnumerableView

impl Debug for D3D_REGISTER_COMPONENT_TYPE

impl Debug for PSS_CAPTURE_FLAGS

impl Debug for D3D11_VIDEO_CONTENT_PROTECTION_CAPS

impl Debug for D3DVS_ADDRESSMODE_TYPE

impl Debug for DISPID_SpeechAudioStatus

impl Debug for DISPID_SpeechLexiconProns

impl Debug for APTTYPEQUALIFIER

impl Debug for SQL_DAY_SECOND_STRUCT

impl Debug for HIDP_LINK_COLLECTION_NODE

impl Debug for HASHALGORITHM_ENUM

impl Debug for IWICBitmapFlipRotator

impl Debug for DISPPARAMS

impl Debug for IDirect3DStateBlock9

impl Debug for SEC_APPLICATION_PROTOCOL_NEGOTIATION_EXT

impl Debug for SINGLE_LIST_ENTRY

impl Debug for KERB_RETRIEVE_TKT_REQUEST

impl Debug for ISpRecoCategory

impl Debug for DISPID_SpeechFileStream

impl Debug for COPYFILE2_MESSAGE_ChunkFinished

impl Debug for WICRect

impl Debug for DXGI_ALPHA_MODE

impl Debug for ENUM_PAGE_FILE_INFORMATION

impl Debug for HTTP_QOS_SETTING_TYPE

impl Debug for WAVEINCAPSW

impl Debug for REBARINFO

impl Debug for WSC_PROVIDER_INFO_TYPE

impl Debug for USER_MODALS_INFO_2

impl Debug for ILaunchTargetMonitor

impl Debug for TBBUTTONINFOA

impl Debug for ID3D12Fence

impl Debug for DSROLE_UPGRADE_STATUS_INFO

impl Debug for DSBUFFERDESC

impl Debug for FUNCFLAGS

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_A

impl Debug for SecPkgContext_SessionInfo

impl Debug for STACKFRAME

impl Debug for NMTVKEYDOWN

impl Debug for ID2D1Brush

impl Debug for DXGI_FRAME_STATISTICS_MEDIA

impl Debug for NETLOGON_INFO_4

impl Debug for CIEXYZ

impl Debug for CTL_CONTEXT

impl Debug for BCRYPT_DSA_PARAMETER_HEADER_V2

impl Debug for IDWriteFontFace

impl Debug for D3D11_FEATURE_DATA_D3D9_SHADOW_SUPPORT

impl Debug for CERT_STRONG_SIGN_SERIALIZED_INFO

impl Debug for DXGI_OUTDUPL_POINTER_POSITION

impl Debug for VSS_SNAPSHOT_STATE

impl Debug for JOBOBJECTINFOCLASS

impl Debug for IFolderViewHost

impl Debug for OLECMDTEXT

impl Debug for RPC_SECURITY_QOS_V2_W

impl Debug for IMarkupCallback

impl Debug for KDC_PROXY_CACHE_ENTRY_DATA

impl Debug for RTL_UMS_SCHEDULER_REASON

impl Debug for CRL_ENTRY

impl Debug for USER_MODALS_INFO_1007

impl Debug for IPackageExecutionStateChangeNotification

impl Debug for POLICY_AUDIT_EVENT_TYPE

impl Debug for VALENTW

impl Debug for ISpeechObjectTokens

impl Debug for CONSOLE_SELECTION_INFO

impl Debug for SYSTEM_POWER_STATE

impl Debug for _EXCEPTION_RECORD

impl Debug for VSS_ALTERNATE_WRITER_STATE

impl Debug for LSA_TRANSLATED_NAME

impl Debug for ISpRecognizer

impl Debug for FLOAT128

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_Constant

impl Debug for IFolderFilter

impl Debug for SPEVENTEX

impl Debug for CERT_STRONG_SIGN_PARA

impl Debug for API_VERSION

impl Debug for SpeechVoiceSpeakFlags

impl Debug for RPC_INTERFACE_TEMPLATEA

impl Debug for ISpPhrase2

impl Debug for RAWINPUTHEADER

impl Debug for IAttachmentExecute

impl Debug for D3D11_FORMAT_SUPPORT

impl Debug for ID3D11PixelShader

impl Debug for D3D12_TILE_RANGE_FLAGS

impl Debug for CREDUI_INFOA

impl Debug for SOCKADDR_IN

impl Debug for LM_OWF_PASSWORD

impl Debug for PSAPI_WS_WATCH_INFORMATION

impl Debug for FILE_DISPOSITION_INFO

impl Debug for SecPkgCred_SupportedProtocols

impl Debug for DSROLE_SERVER_STATE

impl Debug for D3D12_FORMAT_SUPPORT2

impl Debug for SPWORDLIST

impl Debug for SMALL_RECT

impl Debug for IContextMenu

impl Debug for HMAC_INFO

impl Debug for LOGPEN

impl Debug for MODLOAD_DATA

impl Debug for D3D12_SHADER_BUFFER_DESC

impl Debug for MSV1_0_CHANGEPASSWORD_REQUEST

impl Debug for DWRITE_TRIMMING_GRANULARITY

impl Debug for IItemNameLimits

impl Debug for HTTP_BINDING_INFO

impl Debug for SEC_WINNT_AUTH_CERTIFICATE_DATA

impl Debug for WSANAMESPACE_INFOW

impl Debug for IInitializeNetworkFolder

impl Debug for SPPHRASERULE

impl Debug for UNIVERSAL_NAME_INFOA

impl Debug for HIDP_NOTRANGE_STRUCT

impl Debug for ISpDataKey

impl Debug for PSAPI_WORKING_SET_EX_BLOCK

impl Debug for PATHNAME_BUFFER

impl Debug for IShellIcon

impl Debug for SPDISPLAYPHRASE

impl Debug for ISpAudio

impl Debug for LSA_FOREST_TRUST_COLLISION_INFORMATION

impl Debug for WINHTTP_WEB_SOCKET_CLOSE_STATUS

impl Debug for IDeskBand2

impl Debug for NETLOGON_SERVICE_INFO

impl Debug for BCRYPT_DSA_KEY_BLOB

impl Debug for HARDWAREINPUT

impl Debug for INameSpaceTreeControlFolderCapabilities

impl Debug for LVTILEINFO

impl Debug for BYTE_SIZEDARR

impl Debug for D3D10_SHADER_VARIABLE_DESC

impl Debug for DISPID_SpeechLexiconPronunciation

impl Debug for D3DDISPLAYMODE

impl Debug for DWRITE_TYPOGRAPHIC_FEATURES

impl Debug for SECPKG_CRED_CLASS

impl Debug for KERB_CERTIFICATE_INFO

impl Debug for HTTP_SERVICE_BINDING_W

impl Debug for SOLE_AUTHENTICATION_SERVICE

impl Debug for DWRITE_TEXTURE_TYPE

impl Debug for D2D1_BITMAP_BRUSH_PROPERTIES

impl Debug for D3DTRANSFORMSTATETYPE

impl Debug for DFS_INFO_150

impl Debug for HDITEMA

impl Debug for HIDP_CAPS

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTIDCOUNT_INPUT

impl Debug for WICBitmapPaletteType

impl Debug for AFPROTOCOLS

impl Debug for IBandHost

impl Debug for IEnumIDList

impl Debug for D3D11_TEX3D_RTV

impl Debug for SPVLIMITS

impl Debug for FILE_IO_PRIORITY_HINT_INFO

impl Debug for NMTVDISPINFOEXA

impl Debug for NMDATETIMEFORMATQUERYW

impl Debug for RPC_IF_ID

impl Debug for INPUT_RECORD

impl Debug for RPC_SECURITY_QOS_V5_A

impl Debug for IEnumObjects

impl Debug for D3D11_FEATURE_DATA_D3D9_OPTIONS1

impl Debug for IMAGE_FILE_HEADER

impl Debug for SPSHORTCUTTYPE

impl Debug for GROUP_AFFINITY

impl Debug for WICBitmapPlaneDescription

impl Debug for CM_NOTIFY_FILTER_DeviceInterface

impl Debug for WSACOMPLETIONTYPE

impl Debug for ERole

impl Debug for DISPID_SpeechRecoContext

impl Debug for LSA_AUTH_INFORMATION

impl Debug for D3D11_TEX2DMS_DSV

impl Debug for SP_NEWDEVICEWIZARD_DATA

impl Debug for LOCALGROUP_MEMBERS_INFO_0

impl Debug for IDirect3DDevice9Ex

impl Debug for SecPkgContext_Flags

impl Debug for NMLISTVIEW

impl Debug for SID_AND_ATTRIBUTES

impl Debug for HDITEMW

impl Debug for FILE_ID_DESCRIPTOR

impl Debug for NMTBCUSTOMDRAW

impl Debug for IVssBackupComponentsEx3

impl Debug for ITaskbarList3

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT

impl Debug for DXGI_MODE_DESC

impl Debug for ISpXMLRecoResult

impl Debug for TYPEDESC

impl Debug for WSACOMPLETION

impl Debug for IDynamicHWHandler

impl Debug for ACCESS_LIST

impl Debug for KERB_INTERACTIVE_UNLOCK_LOGON

impl Debug for IRunningObjectTable

impl Debug for CRYPT_OBJID_TABLE

impl Debug for GLYPHMETRICS

impl Debug for D3D12_BUFFER_RTV

impl Debug for ID3D11DepthStencilView

impl Debug for D2D1_PRESENT_OPTIONS

impl Debug for CY

impl Debug for D3DDISPLAYROTATION

impl Debug for D3D12_TEX2D_ARRAY_DSV

impl Debug for D3D12_LOGIC_OP

impl Debug for ID3D11VideoContext

impl Debug for D3D12_SHADER_TYPE_DESC

impl Debug for RTL_CRITICAL_SECTION_DEBUG

impl Debug for D3D11_DSV_DIMENSION

impl Debug for BY_HANDLE_FILE_INFORMATION

impl Debug for DWRITE_GLYPH_RUN

impl Debug for DXGI_OUTDUPL_FRAME_INFO

impl Debug for D2D1_PIXEL_FORMAT

impl Debug for D2D_RECT_F

impl Debug for KERB_DECRYPT_REQUEST

impl Debug for CorSymSearchPolicyAttributes

impl Debug for ACCEL

impl Debug for D3D11_VIDEO_USAGE

impl Debug for IInputObject

impl Debug for PNP_VETO_TYPE

impl Debug for IDirect3D9Ex

impl Debug for ISequentialStream

impl Debug for IEnumAssocHandlers

impl Debug for D3DVOLUME_DESC

impl Debug for IUnknown

impl Debug for WSAQUERYSET2W

impl Debug for FLASHWINFO

impl Debug for SP_ALTPLATFORM_INFO_V2

impl Debug for IShellItem2

impl Debug for LSA_FOREST_TRUST_RECORD_ForestTrustData

impl Debug for ISpGrammarBuilder2

impl Debug for IDirect3DPixelShader9

impl Debug for D3D12_TEX2D_RTV

impl Debug for SP_FILE_COPY_PARAMS_W

impl Debug for HD_TEXTFILTERA

impl Debug for D3DVSHADERCAPS2_0

impl Debug for D3D11_FEATURE_DATA_MARKER_SUPPORT

impl Debug for D2D1_BITMAP_PROPERTIES

impl Debug for D3DPOOL

impl Debug for ID3D11FunctionReflection

impl Debug for D3D11_INPUT_ELEMENT_DESC

impl Debug for IHandlerActivationHost

impl Debug for ISpNotifySink

impl Debug for ILaunchTargetViewSizePreference

impl Debug for WICBitmapCreateCacheOption

impl Debug for WICPngSrgbProperties

impl Debug for D2D1_FACTORY_TYPE

impl Debug for EXCEPTION_DEBUG_INFO

impl Debug for KERB_CRYPTO_KEY32

impl Debug for TCITEMHEADERA

impl Debug for NMCUSTOMDRAW

impl Debug for SCRIPT_FONTPROPERTIES

impl Debug for IActivationFactory

impl Debug for ID3D11VideoProcessorInputView

impl Debug for HTTP_STATE_INFO

impl Debug for OPENTYPE_FEATURE_RECORD

impl Debug for DXGI_MODE_ROTATION

impl Debug for IShellExtInit

impl Debug for IDXGIOutput2

impl Debug for IControlMarkup

impl Debug for IWebWizardExtension

impl Debug for SPMATCHINGMODE

impl Debug for D3DSTATEBLOCKTYPE

impl Debug for KERB_ADD_BINDING_CACHE_ENTRY_EX_REQUEST

impl Debug for SPSEMANTICERRORINFO

impl Debug for DFS_STORAGE_INFO_1

impl Debug for D3DCAPS9

impl Debug for IDesktopWallpaper

impl Debug for DFS_INFO_102

impl Debug for IPropertyBag

impl Debug for IVssAsync

impl Debug for D3D11_QUERY_DESC

impl Debug for DISPID_SpeechRecognizer

impl Debug for IDirect3DVolume9

impl Debug for RGBQUAD

impl Debug for D3DDEVINFO_D3D9PIPELINETIMINGS

impl Debug for D3D11_BLEND

impl Debug for MS_ADDINFO_BLOB

impl Debug for IDWriteTextAnalyzer

impl Debug for D3D12_STATIC_SAMPLER_DESC

impl Debug for D3DTRIPATCH_INFO

impl Debug for CRYPT_IMAGE_REF

impl Debug for FILE_ATTRIBUTE_TAG_INFO

impl Debug for IKnownFolder

impl Debug for ID3D12CommandList

impl Debug for INITCOMMONCONTROLSEX

impl Debug for SecPkgCred_ClientCertPolicy

impl Debug for KERB_NET_ADDRESSES

impl Debug for IDirectSoundBuffer

impl Debug for SPVOICESTATUS

impl Debug for ISpNotifyTranslator

impl Debug for D3D12_INDEX_BUFFER_VIEW

impl Debug for GUID

impl Debug for CERT_PHYSICAL_STORE_INFO

impl Debug for NETLOGON_INTERACTIVE_INFO

impl Debug for SPPRONUNCIATIONFLAGS

impl Debug for IRunnableTask

impl Debug for TASKDIALOG_MESSAGES

impl Debug for IVssComponentEx

impl Debug for CERT_NAME_VALUE

impl Debug for ID2D1HwndRenderTarget

impl Debug for VSS_OBJECT_PROP

impl Debug for _wireSAFEARRAY

impl Debug for NMTVGETINFOTIPA

impl Debug for DFS_SUPPORTED_NAMESPACE_VERSION_INFO

impl Debug for SPSERIALIZEDRESULT

impl Debug for TIMESTAMP_STRUCT

impl Debug for SCRIPT_CHARPROP

impl Debug for WIN32_MEMORY_RANGE_ENTRY

impl Debug for HIDP_VALUE_CAPS

impl Debug for FUNCKIND

impl Debug for TVINSERTSTRUCTW

impl Debug for CREDENTIALW

impl Debug for POLICY_MODIFICATION_INFO

impl Debug for CERT_CHAIN_POLICY_PARA

impl Debug for IDirect3DAuthenticatedChannel9

impl Debug for D2D1_GAMMA

impl Debug for BCRYPT_INTERFACE_VERSION

impl Debug for ID2D1EllipseGeometry

impl Debug for HELPINFO

impl Debug for VSS_OBJECT_TYPE

impl Debug for RAWKEYBOARD

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_OUTPUT

impl Debug for ID3D11ShaderReflectionType

impl Debug for CERT_REVOCATION_CHAIN_PARA

impl Debug for SPVPITCH

impl Debug for FINDEX_SEARCH_OPS

impl Debug for D2D1_DC_INITIALIZE_MODE

impl Debug for CRED_PROTECTION_TYPE

impl Debug for NMHDFILTERBTNCLICK

impl Debug for DXGI_RATIONAL

impl Debug for FPO_DATA

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYCHANNELTYPE_OUTPUT

impl Debug for CRYPT_OID_INFO

impl Debug for ID3D11Predicate

impl Debug for D3D12_DSV_DIMENSION

impl Debug for IDestinationStreamFactory

impl Debug for D3D11_VIDEO_PROCESSOR_DEVICE_CAPS

impl Debug for D3D11_SO_DECLARATION_ENTRY

impl Debug for RPC_BINDING_HANDLE_SECURITY_V1_W

impl Debug for DXGI_COLOR_SPACE_TYPE

impl Debug for DISPID_SpeechGrammarRule

impl Debug for WICBitmapDitherType

impl Debug for OFNOTIFYW

impl Debug for ICommDlgBrowser

impl Debug for IClassFactory

impl Debug for D3D12_FILTER

impl Debug for IExplorerCommandState

impl Debug for MSV1_0_LOGON_SUBMIT_TYPE

impl Debug for MSV1_0_AVID

impl Debug for IDXGIFactory1

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGUREPROTECTION

impl Debug for HTTP_MULTIPLE_KNOWN_HEADERS

impl Debug for DISCDLGSTRUCTA

impl Debug for D3D12_QUERY_TYPE

impl Debug for GCP_RESULTSA

impl Debug for KNOWN_FOLDER_FLAG

impl Debug for D3D12_DSV_FLAGS

impl Debug for USER_INFO_1

impl Debug for timeval

impl Debug for IDirect3DBaseTexture9

impl Debug for SCRIPT_VISATTR

impl Debug for DFS_INFO_1

impl Debug for WINUSB_SETUP_PACKET

impl Debug for D3DSURFACE_DESC

impl Debug for D3D11_VIDEO_PROCESSOR_OUTPUT_VIEW_DESC

impl Debug for IExtractImage2

impl Debug for SIP_SUBJECTINFO

impl Debug for HTTP_DATA_CHUNK

impl Debug for PAINTSTRUCT

impl Debug for IComputerInfoChangeNotify

impl Debug for TRACKMOUSEEVENT

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_OUTPUT

impl Debug for IVssComponentEx2

impl Debug for INameSpaceTreeAccessible

impl Debug for IDWriteInlineObject

impl Debug for UNLOAD_DLL_DEBUG_INFO

impl Debug for WINHTTP_WEB_SOCKET_OPERATION

impl Debug for ISpPhoneConverter

impl Debug for DRAGLISTINFO

impl Debug for ISpObjectTokenInit

impl Debug for AUDCLNT_SHAREMODE

impl Debug for D3D12_COMMAND_LIST_TYPE

impl Debug for IDXGISwapChain2

impl Debug for NETRESOURCEA

impl Debug for WINHTTP_CURRENT_USER_IE_PROXY_CONFIG

impl Debug for IFileSyncMergeHandler

impl Debug for IDLDESC

impl Debug for ID3D12CommandSignature

impl Debug for IBandSite

impl Debug for in_addr

impl Debug for IRelatedItem

impl Debug for ID2D1GdiInteropRenderTarget

impl Debug for SecPkgContext_Target

impl Debug for IAssocHandlerInvoker

impl Debug for DXGI_SWAP_CHAIN_FLAG

impl Debug for LSA_FOREST_TRUST_COLLISION_RECORD

impl Debug for WICSectionAccessLevel

impl Debug for USBD_PIPE_TYPE

impl Debug for TBMETRICS

impl Debug for CRYPT_PROVIDER_REG

impl Debug for D3D12_CONSTANT_BUFFER_VIEW_DESC

impl Debug for NORM_FORM

impl Debug for ID3D12PipelineState

impl Debug for SQLINTERVAL

impl Debug for USER_INFO_21

impl Debug for SPPROPERTYINFO

impl Debug for IInsertItem

impl Debug for RPC_ENDPOINT_TEMPLATEA

impl Debug for D3DAUTHENTICATEDCHANNEL_PROCESSIDENTIFIERTYPE

impl Debug for IRQ_DES_32

impl Debug for OVERLAPPED

impl Debug for LVINSERTMARK

impl Debug for D3D_ROOT_SIGNATURE_VERSION

impl Debug for ID3DInclude

impl Debug for WSAVERSION

impl Debug for SpeechSpecialTransitionType

impl Debug for D3DDEVINFO_D3DVERTEXSTATS

impl Debug for D3DPATCHEDGESTYLE

impl Debug for LSA_REFERENCED_DOMAIN_LIST

impl Debug for COPYFILE2_MESSAGE_PollContinue

impl Debug for D3D_PRIMITIVE_TOPOLOGY

impl Debug for SPVISEMES

impl Debug for ID3D11FunctionLinkingGraph

impl Debug for LSA_ENUMERATION_INFORMATION

impl Debug for NLSVERSIONINFO

impl Debug for NMREBARCHEVRON

impl Debug for SpeechRetainedAudioOptions

impl Debug for VSS_SNAPSHOT_PROPERTY_ID

impl Debug for TASKDIALOG_BUTTON

impl Debug for DFS_INFO_2

impl Debug for DWRITE_FONT_METRICS

impl Debug for IDirect3DSwapChain9

impl Debug for IDXGIFactory4

impl Debug for ICreateTypeLib

impl Debug for D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_INPUT

impl Debug for TRUSTED_DOMAIN_FULL_INFORMATION2

impl Debug for IWICPalette

impl Debug for D2D1_HWND_RENDER_TARGET_PROPERTIES

impl Debug for POINT

impl Debug for CRYPT_ENROLLMENT_NAME_VALUE_PAIR

impl Debug for CREDENTIALA

impl Debug for ID3D11RasterizerState

impl Debug for D3D11_ENCRYPTED_BLOCK_INFO

impl Debug for IWICFormatConverter

impl Debug for SOCKADDR

impl Debug for D3D_SHADER_VARIABLE_CLASS

impl Debug for D3D12_INDIRECT_ARGUMENT_DESC_UnorderedAccessView

impl Debug for TIME_STRUCT

impl Debug for IMAGE_RUNTIME_FUNCTION_ENTRY

impl Debug for USER_INFO_22

impl Debug for USER_INFO_1010

impl Debug for D3D12_TEX2D_UAV

impl Debug for KERB_QUERY_BINDING_CACHE_REQUEST

impl Debug for KERB_CERTIFICATE_HASHINFO

impl Debug for D3D11_CLASS_INSTANCE_DESC

impl Debug for D3D12_CONSERVATIVE_RASTERIZATION_TIER

impl Debug for D2D1_COMBINE_MODE

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYINFOBUSTYPE_OUTPUT

impl Debug for IRegTreeItem

impl Debug for ISpEventSource2

impl Debug for D3D11_VIDEO_PROCESSOR_STEREO_CAPS

impl Debug for IDirect3DVertexBuffer9

impl Debug for IMMDevice

impl Debug for SecPkgContext_EapPrfInfo

impl Debug for D3D12_SUBRESOURCE_TILING

impl Debug for NETSETUP_PROVISIONING_PARAMS

impl Debug for D3D11_QUERY

impl Debug for D3D12_TEX1D_ARRAY_DSV

impl Debug for IFrameworkInputPane

impl Debug for ID3D12ShaderReflectionType

impl Debug for IDirect3DVertexShader9

impl Debug for PALETTEENTRY

impl Debug for D3D11_TEX2D_ARRAY_SRV

impl Debug for IO_RESOURCE

impl Debug for D3D_RESOURCE_RETURN_TYPE

impl Debug for PKU2U_CERT_BLOB

impl Debug for USB_DEVICE_TYPE

impl Debug for D3DRANGE

impl Debug for IUpdateIDList

impl Debug for D3D11_COUNTER

impl Debug for D3D12_CONSERVATIVE_RASTERIZATION_MODE

impl Debug for IDXGIResource

impl Debug for BCRYPT_KEY_LENGTHS_STRUCT

impl Debug for IRecordInfo

impl Debug for SLIST_ENTRY

impl Debug for ISpRecoResult

impl Debug for SPWORDPRONOUNCEABLE

impl Debug for SecPkgContext_Bindings

impl Debug for IPreviousVersionsInfo

impl Debug for VSS_RESTOREMETHOD_ENUM

impl Debug for D3D11_VIDEO_PROCESSOR_STEREO_FORMAT

impl Debug for TYPEATTR

impl Debug for LSA_TRUST_INFORMATION

impl Debug for DISPID_SpeechVoiceStatus

impl Debug for CTL_USAGE

impl Debug for D3D_SRV_DIMENSION

impl Debug for DPASTREAMINFO

impl Debug for REFS_VOLUME_DATA_BUFFER

impl Debug for JOBOBJECT_BASIC_LIMIT_INFORMATION

impl Debug for BITMAPINFOHEADER

impl Debug for SEC_NEGOTIATION_INFO

impl Debug for D3D12_TEXTURE_LAYOUT

impl Debug for MODULEINFO

impl Debug for FLOWSPEC

impl Debug for PROCESS_INFORMATION

impl Debug for MODLOAD_PDBGUID_PDBAGE

impl Debug for SPCOMMITFLAGS

impl Debug for RGNDATAHEADER

impl Debug for D3D11_DRAW_INDEXED_INSTANCED_INDIRECT_ARGS

impl Debug for KERB_DECRYPT_RESPONSE

impl Debug for DEVPRIVATE_DES

impl Debug for D3D11_TEX2DMS_ARRAY_RTV

impl Debug for IRQ_RESOURCE_64

impl Debug for LSA_TRANSLATED_SID

impl Debug for IDXGIOutput1

impl Debug for NETSETUP_NAME_TYPE

impl Debug for PRINTER_DEFAULTSA

impl Debug for D3D11_AUTHENTICATED_CHANNEL_TYPE

impl Debug for D3D12_HEAP_PROPERTIES

impl Debug for D3DCUBEMAP_FACES

impl Debug for D3DMULTISAMPLE_TYPE

impl Debug for SYSTEM_POWER_STATUS

impl Debug for TVITEMA

impl Debug for _SC_ENUM_TYPE

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_INPUT

impl Debug for JOBOBJECT_BASIC_PROCESS_ID_LIST

impl Debug for MEMORYSTATUS

impl Debug for IShellRunDll

impl Debug for D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT_OUTPUT

impl Debug for BM_REQUEST_TYPE

impl Debug for POLICY_AUDIT_FULL_SET_INFO

impl Debug for DWRITE_FONT_FACE_TYPE

impl Debug for RTL_RUN_ONCE

impl Debug for CRYPT_IMAGE_REG

impl Debug for SP_INF_INFORMATION

impl Debug for COMBOBOXEXITEMW

impl Debug for D3D11_VIDEO_PROCESSOR_CUSTOM_RATE

impl Debug for CONSOLE_READCONSOLE_CONTROL

impl Debug for D3D12_RESOURCE_ALLOCATION_INFO

impl Debug for PSAPI_WS_WATCH_INFORMATION_EX

impl Debug for SPEVENT

impl Debug for IShellBrowser

impl Debug for ID3D11VideoProcessorOutputView

impl Debug for LOCALGROUP_MEMBERS_INFO_1

impl Debug for IObjectWithFolderEnumMode

impl Debug for CLEAR_BLOCK

impl Debug for MMTIME_smpte

impl Debug for IViewStateIdentityItem

impl Debug for D3D12_FORMAT_SUPPORT1

impl Debug for LSA_LAST_INTER_LOGON_INFO

impl Debug for D3D11_FEATURE_DATA_D3D9_SIMPLE_INSTANCING_SUPPORT

impl Debug for D3D11_TEXTURECUBE_FACE

impl Debug for D3D12_MESSAGE

impl Debug for D3DVS_RASTOUT_OFFSETS

impl Debug for CRYPT_ATTRIBUTES

impl Debug for SEC_WINNT_AUTH_IDENTITY_A

impl Debug for NMTTCUSTOMDRAW

impl Debug for HTTP_503_RESPONSE_VERBOSITY

impl Debug for KERB_CLEANUP_MACHINE_PKINIT_CREDS_REQUEST

impl Debug for CRYPT_CONTEXT_FUNCTION_CONFIG

impl Debug for D2D1_PATH_SEGMENT

impl Debug for SPAUDIOOPTIONS

impl Debug for SPVFEATURE

impl Debug for IApplicationAssociationRegistration

impl Debug for XINPUT_VIBRATION

impl Debug for IDefaultExtractIconInit

impl Debug for SPRECORESULTTIMES

impl Debug for ICreateTypeInfo2

impl Debug for D3D12_BLEND_OP

impl Debug for DISPID_SpeechWaveFormatEx

impl Debug for D3DCOMPILER_STRIP_FLAGS

impl Debug for DWRITE_WORD_WRAPPING

impl Debug for D3DAUTHENTICATEDCHANNEL_PROTECTION_FLAGS

impl Debug for BITMAPV5HEADER

impl Debug for HTTP_BANDWIDTH_LIMIT_INFO

impl Debug for D3D11_SHADER_VERSION_TYPE

impl Debug for _wireBRECORD

impl Debug for D3D12_SUBRESOURCE_DATA

impl Debug for DWRITE_FONT_STRETCH

impl Debug for IAudioClient

impl Debug for DISPID_SpeechGrammarRuleStateTransitions

impl Debug for D3D11_CPU_ACCESS_FLAG

impl Debug for SPVSTATE

impl Debug for IErrorInfo

impl Debug for IIdentityName

impl Debug for HTTP_SERVICE_CONFIG_CACHE_SET

impl Debug for KEYBDINPUT

impl Debug for SpeechEngineConfidence

impl Debug for DISPID_SpeechVoice

impl Debug for D3D12_HEAP_TYPE

impl Debug for LVFINDINFOW

impl Debug for MODLOAD_CVMISC

impl Debug for NTFS_VOLUME_DATA_BUFFER

impl Debug for USER_INFO_1008

impl Debug for RTL_BARRIER

impl Debug for ISpeechObjectTokenCategory

impl Debug for METARECORD

impl Debug for NMDATETIMECHANGE

impl Debug for PRINTDLGEXW

impl Debug for ID2D1RadialGradientBrush

impl Debug for HTTP_CACHE_POLICY_TYPE

impl Debug for CRYPT_CSP_PROVIDER

impl Debug for D3D12_INFO_QUEUE_FILTER_DESC

impl Debug for IApplicationDocumentLists

impl Debug for TCHITTESTINFO

impl Debug for SpeechStreamFileMode

impl Debug for D3D11_FEATURE_DATA_D3D11_OPTIONS3

impl Debug for ADDRESS

impl Debug for NMDAYSTATE

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUIDCOUNT_OUTPUT

impl Debug for IHomeGroup

impl Debug for D3D12_RESOURCE_DIMENSION

impl Debug for D3D11_AUTHENTICATED_QUERY_ACESSIBILITY_OUTPUT

impl Debug for MSV1_0_VALIDATION_INFO

impl Debug for D3D12_SHADER_RESOURCE_VIEW_DESC

impl Debug for STACKFRAME_EX

impl Debug for DISPID_SpeechPhraseRules

impl Debug for IVssEnumObject

impl Debug for DISPID_SpeechPhraseAlternate

impl Debug for DISPID_SpeechAudioFormat

impl Debug for ID3D10ShaderReflectionType

impl Debug for NETLOGON_INFO_1

impl Debug for IVssCreateWriterMetadata

impl Debug for LVTILEVIEWINFO

impl Debug for HTTP_REQUEST_AUTH_INFO

impl Debug for DISPID_SpeechObjectTokens

impl Debug for D3D11_TEXCUBE_ARRAY_SRV

impl Debug for CERT_SIMPLE_CHAIN

impl Debug for D2D_MATRIX_4X4_F

impl Debug for SecPkgContext_AuthzID

impl Debug for WICGifLogicalScreenDescriptorProperties

impl Debug for D3D12_MEMCPY_DEST

impl Debug for CYPHER_BLOCK

impl Debug for D2D1_TEXT_ANTIALIAS_MODE

impl Debug for WICComponentSigning

impl Debug for GLYPHMETRICSFLOAT

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYUNCOMPRESSEDENCRYPTIONLEVEL_OUTPUT

impl Debug for FDAP

impl Debug for D3D_SHADER_MACRO

impl Debug for D3DTEXTUREFILTERTYPE

impl Debug for SpeechRuleState

impl Debug for D3D11_FEATURE_DATA_DOUBLES

impl Debug for INameSpaceTreeControlDropHandler

impl Debug for ISpRecoContext

impl Debug for D3DDISPLAYMODEEX

impl Debug for SecPkgContext_NativeNamesA

impl Debug for USB_INTERFACE_DESCRIPTOR

impl Debug for D3D12_ROOT_DESCRIPTOR

impl Debug for RAWINPUT

impl Debug for HTTP_SERVICE_CONFIG_TIMEOUT_KEY

impl Debug for CERT_REVOCATION_STATUS

impl Debug for APTTYPE

impl Debug for HTTP_HEADER_ID

impl Debug for IOleCommandTarget

impl Debug for D3D11_MAP

impl Debug for ID3D11SamplerState

impl Debug for SPRECOSTATE

impl Debug for RID_DEVICE_INFO_HID

impl Debug for SecPkgContext_CredInfo

impl Debug for HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS

impl Debug for TCITEMA

impl Debug for IStartMenuPinnedList

impl Debug for COLORMAP

impl Debug for NET_DISPLAY_GROUP

impl Debug for ILaunchSourceAppUserModelId

impl Debug for TIMECAPS

impl Debug for D3D12_SUBRESOURCE_INFO

impl Debug for DXGI_MATRIX_3X2_F

impl Debug for XINPUT_CAPABILITIES

impl Debug for IPrintDialogServices

impl Debug for IMAGEHLP_LINEW64

impl Debug for DCB

impl Debug for NET_VALIDATE_PASSWORD_RESET_INPUT_ARG

impl Debug for IInitializeWithBindCtx

impl Debug for D3D11_DRAW_INSTANCED_INDIRECT_ARGS

impl Debug for IFileDialogCustomize

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESS_OUTPUT

impl Debug for SPPHRASERNG

impl Debug for USER_MODALS_INFO_1004

impl Debug for ICreateTypeLib2

impl Debug for MSV1_0_INTERACTIVE_LOGON

impl Debug for SPADAPTATIONRELEVANCE

impl Debug for HLOG

impl Debug for D3DMATERIAL9

impl Debug for KNONVOLATILE_CONTEXT_POINTERS_u2

impl Debug for D3DAES_CTR_IV

impl Debug for QOS

impl Debug for IO_COUNTERS

impl Debug for D3D11_STENCIL_OP

impl Debug for WICBitmapAlphaChannelOption

impl Debug for IWICBitmapClipper

impl Debug for CHAR_INFO

impl Debug for NET_VALIDATE_AUTHENTICATION_INPUT_ARG

impl Debug for D3D12_ROOT_PARAMETER

impl Debug for D3D_OMAC

impl Debug for TRUSTED_INFORMATION_CLASS

impl Debug for CREDUIWIN_MARSHALED_CONTEXT

impl Debug for DFS_NAMESPACE_VERSION_ORIGIN

impl Debug for ISpRecoGrammar

impl Debug for MAT2

impl Debug for TP_IO

impl Debug for REBARBANDINFOA

impl Debug for GLYPHSET

impl Debug for D3D_SHADER_CBUFFER_FLAGS

impl Debug for SPWORDPRONUNCIATION

impl Debug for D3D11_COUNTER_INFO

impl Debug for CERT_SERVER_OCSP_RESPONSE_CONTEXT

impl Debug for IInitializeWithWindow

impl Debug for HSTRING_HEADER

impl Debug for CRYPT_TIMESTAMP_ACCURACY

impl Debug for D3D12_TEX1D_ARRAY_RTV

impl Debug for SYMBOL_INFOW

impl Debug for KERB_INTERACTIVE_PROFILE

impl Debug for ICreateErrorInfo

impl Debug for ID3D11RenderTargetView

impl Debug for DXGI_DECODE_SWAP_CHAIN_DESC

impl Debug for SCHANNEL_ALG

impl Debug for WICColorContextType

impl Debug for SP_DEVICE_INTERFACE_DETAIL_DATA_W

impl Debug for VSS_ROLLFORWARD_TYPE

impl Debug for ID3D11ShaderReflectionVariable

impl Debug for PIXELFORMATDESCRIPTOR

impl Debug for SPRUNSTATE

impl Debug for STARTUPINFOA

impl Debug for D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS

impl Debug for D3D11_DEPTH_STENCIL_DESC

impl Debug for ID3D12Debug

impl Debug for D3D11_FORMAT_SUPPORT2

impl Debug for D3DDEVINFO_D3D9INTERFACETIMINGS

impl Debug for USER_INFO_1025

impl Debug for D3DDEVINFO_D3D9BANDWIDTHTIMINGS

impl Debug for FILEPATHS_A

impl Debug for D3D11_FEATURE_DATA_SHADER_MIN_PRECISION_SUPPORT

impl Debug for NEGOTIATE_PACKAGE_PREFIX

impl Debug for FILE_INFO_BY_HANDLE_CLASS

impl Debug for KERB_QUERY_KDC_PROXY_CACHE_RESPONSE

impl Debug for SPRULESTATE

impl Debug for LVGROUP

impl Debug for D3D11_TEX1D_RTV

impl Debug for SPSERIALIZEDPHRASE

impl Debug for IDirect3DResource9

impl Debug for SecPkgCred_SupportedAlgs

impl Debug for USBD_ISO_PACKET_DESCRIPTOR

impl Debug for D3D12_SHADER_VARIABLE_DESC

impl Debug for SPPHRASEPROPERTY

impl Debug for NTFS_FILE_RECORD_OUTPUT_BUFFER

impl Debug for D3D11_VIDEO_DECODER_EXTENSION

impl Debug for KERB_ADD_CREDENTIALS_REQUEST_EX

impl Debug for MSV1_0_INTERACTIVE_PROFILE

impl Debug for CMS_DH_KEY_INFO

impl Debug for SecPkgContext_UiInfo

impl Debug for IQueryCodePage

impl Debug for IFileOperation

impl Debug for D3D12_CLEAR_FLAGS

impl Debug for POLYTEXTW

impl Debug for BCRYPT_KEY_DATA_BLOB_HEADER

impl Debug for DWM_BLURBEHIND

impl Debug for KERNINGPAIR

impl Debug for D3D12_RESOURCE_DESC

impl Debug for MEM_LARGE_RANGE

impl Debug for SecPkgContext_ClientCertPolicyResult

impl Debug for CREATESTRUCTA

impl Debug for SPNORMALIZATIONLIST

impl Debug for TBSAVEPARAMSW

impl Debug for D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT

impl Debug for HTTP_SERVICE_CONFIG_IP_LISTEN_PARAM

impl Debug for D3D12_DESCRIPTOR_RANGE_TYPE

impl Debug for GET_FILEEX_INFO_LEVELS

impl Debug for WICPngItxtProperties

impl Debug for KERB_QUERY_DOMAIN_EXTENDED_POLICIES_REQUEST

impl Debug for TCITEMW

impl Debug for IBrowserFrameOptions

impl Debug for ISpDisplayAlternates

impl Debug for D3D11_VIDEO_PROCESSOR_STREAM

impl Debug for SecPkgCred_CipherStrengths

impl Debug for HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS

impl Debug for NETLOGON_INFO_2

impl Debug for ID2D1SimplifiedGeometrySink

impl Debug for DLGTEMPLATE

impl Debug for IUrlHistoryStg2

impl Debug for DMA_DES

impl Debug for DFS_INFO_100

impl Debug for SpeechDataKeyLocation

impl Debug for IDWriteTextLayout

impl Debug for D2D1_WINDOW_STATE

impl Debug for SCRIPT_PROPERTIES

impl Debug for HTTP_SSL_INFO

impl Debug for SP_UNREMOVEDEVICE_PARAMS

impl Debug for eTlsSignatureAlgorithm

impl Debug for D3DAUTHENTICATEDCHANNEL_CONFIGURECRYPTOSESSION

impl Debug for D3D12_MESSAGE_SEVERITY

impl Debug for D3D12_TEX2D_SRV

impl Debug for NET_COMPUTER_NAME_TYPE

impl Debug for ID3D12FunctionParameterReflection

impl Debug for ITaskbarList

impl Debug for IShellView

impl Debug for D3D12_SHADER_INPUT_BIND_DESC

impl Debug for IPersistFolder

impl Debug for D2D1_ELLIPSE

impl Debug for TP_POOL

impl Debug for SecPkgInfoA

impl Debug for SecPkgContext_AuthorityA

impl Debug for WSAQUERYSET2A

impl Debug for D3D11_FEATURE_DATA_FORMAT_SUPPORT

impl Debug for ID3D11Resource

impl Debug for D3D11_RESOURCE_DIMENSION

impl Debug for SP_INSTALLWIZARD_DATA

impl Debug for HTTP_SERVER_AUTHENTICATION_INFO

impl Debug for VOLUME_BITMAP_BUFFER

impl Debug for HTTP_PROTECTION_LEVEL_TYPE

impl Debug for ISpResourceManager

impl Debug for HARDWARE_COUNTER_DATA

impl Debug for IParseAndCreateItem

impl Debug for POLICY_AUDIT_SID_ARRAY

impl Debug for IMAGE_DEBUG_MISC

impl Debug for CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1

impl Debug for D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES

impl Debug for BCRYPT_KEY_BLOB

impl Debug for POLICY_DOMAIN_INFORMATION_CLASS

impl Debug for D3D11_VIDEO_PROCESSOR_CAPS

impl Debug for D3D12_DEPTH_STENCIL_VALUE

impl Debug for SecPkgCredentials_NamesA

impl Debug for KERB_CERTIFICATE_LOGON

impl Debug for USER_INFO_1052

impl Debug for FILE_STREAM_INFO

impl Debug for D3D12_RESOURCE_UAV_BARRIER

impl Debug for D3D11_SHADER_TYPE_DESC

impl Debug for KERB_PURGE_TKT_CACHE_REQUEST

impl Debug for D3D11_TEX2DMS_SRV

impl Debug for MSG

impl Debug for IShellLibrary

impl Debug for ITransferAdviseSink

impl Debug for eTlsHashAlgorithm

impl Debug for UDACCEL

impl Debug for DWRITE_FLOW_DIRECTION

impl Debug for DISPID_SpeechLexiconWord

impl Debug for D3D12_SHADER_VISIBILITY

impl Debug for DMA_RESOURCE

impl Debug for CRYPT_ATTRIBUTE

impl Debug for D3D12_TEX3D_UAV

impl Debug for ID2D1BitmapRenderTarget

impl Debug for WSANETWORKEVENTS

impl Debug for DEVNAMES

impl Debug for IDirect3D9ExOverlayExtension

impl Debug for HTTP_REQUEST_INFO

impl Debug for D3D11_FEATURE_DATA_FORMAT_SUPPORT2

impl Debug for ISpEventSource

impl Debug for ISearchBoxInfo

impl Debug for D3DVIEWPORT9

impl Debug for DHPUBKEY

impl Debug for RAWINPUTDEVICE

impl Debug for ITypeChangeEvents

impl Debug for D3D11_MAP_FLAG

impl Debug for DECIMAL

impl Debug for ISpeechObjectToken

impl Debug for IShellFolder2

impl Debug for POLICY_ACCOUNT_DOMAIN_INFO

impl Debug for USER_INFO_1013

impl Debug for SYSTEMTIME

impl Debug for WIC8BIMResolutionInfoProperties

impl Debug for D3D12_DEBUG_FEATURE

impl Debug for D2D1_LINE_JOIN

impl Debug for D3D11_TEX1D_SRV

impl Debug for IDXGISwapChain1

impl Debug for IQueryContinue

impl Debug for IAssocHandler

impl Debug for DISPID_SpeechCustomStream

impl Debug for ID3D11VertexShader

impl Debug for DWORD_SIZEDARR

impl Debug for DISPID_SpeechMemoryStream

impl Debug for D3D11_VDOV_DIMENSION

impl Debug for IHandlerInfo

impl Debug for D3DSHADER_MISCTYPE_OFFSETS

impl Debug for CTL_INFO

impl Debug for CUSTDATAITEM

impl Debug for COMPUTER_NAME_FORMAT

impl Debug for ID3D11Texture3D

impl Debug for VSS_USAGE_TYPE

impl Debug for ACL

impl Debug for D3DBOX

impl Debug for D3D12_INPUT_CLASSIFICATION

impl Debug for REMOTE_NAME_INFOW

impl Debug for DHPUBKEY_VER3

impl Debug for NET_VALIDATE_PASSWORD_HASH

impl Debug for EXTLOGPEN

impl Debug for DWRITE_READING_DIRECTION

impl Debug for RECT

impl Debug for RPC_SECURITY_QOS_V3_W_union

impl Debug for WICDecodeOptions

impl Debug for D3D11_TEX2D_RTV

impl Debug for FILETIME

impl Debug for IApplicationDestinations

impl Debug for ISpRecoGrammar2

impl Debug for D3DCOMPOSERECTSOP

impl Debug for CRYPT_3DES_KEY_STATE

impl Debug for ID3D11View

impl Debug for D3DRASTER_STATUS

impl Debug for D3D11_COLOR_WRITE_ENABLE

impl Debug for IDXGISurface1

impl Debug for IDXGIOutputDuplication

impl Debug for D2D1_RENDER_TARGET_USAGE

impl Debug for D3D11_SHADER_BUFFER_DESC

impl Debug for D3DTEXTURETRANSFORMFLAGS

impl Debug for CRYPT_SIGN_MESSAGE_PARA

impl Debug for DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG

impl Debug for IFileDialog2

impl Debug for IObjectWithAppUserModelID

impl Debug for KERB_PROFILE_BUFFER_TYPE

impl Debug for DWRITE_FONT_STYLE

impl Debug for D3D12_STREAM_OUTPUT_DESC

impl Debug for TRUSTED_CONTROLLERS_INFO

impl Debug for DMA_RANGE

impl Debug for D3D12_TEX2DMS_ARRAY_DSV

impl Debug for CERT_SYSTEM_STORE_INFO

impl Debug for DISPID_SpeechPhraseAlternates

impl Debug for DEVPROPSTORE

impl Debug for BCRYPT_PKCS1_PADDING_INFO

impl Debug for TRIVERTEX

impl Debug for D3D12_TEX1D_ARRAY_SRV

impl Debug for IServiceProvider

impl Debug for VARFLAGS

impl Debug for D3D12_STREAM_OUTPUT_BUFFER_VIEW

impl Debug for WSANSCLASSINFOW

impl Debug for USER_INFO_1012

impl Debug for DSSSEED

impl Debug for EVT_VARIANT_TYPE

impl Debug for CRYPT_ENCRYPT_MESSAGE_PARA

impl Debug for COPYFILE2_MESSAGE_TYPE

impl Debug for D3D12_TEX2DMS_DSV

impl Debug for IDWriteBitmapRenderTarget

impl Debug for D3D11_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT

impl Debug for D3D11_TEXCUBE_SRV

impl Debug for AUDIT_POLICY_INFORMATION

impl Debug for D3D12_RANGE

impl Debug for DWRITE_FONT_FEATURE_TAG

impl Debug for USER_SESSION_KEY

impl Debug for ABC

impl Debug for ID3D11UnorderedAccessView

impl Debug for USER_INFO_1053

impl Debug for GROUP_INFO_1

impl Debug for TRUSTED_DOMAIN_FULL_INFORMATION

impl Debug for D3DRESOURCETYPE

impl Debug for KERB_PURGE_KDC_PROXY_CACHE_RESPONSE

impl Debug for D3DCOMPOSERECTDESTINATION

impl Debug for INameSpaceTreeControlCustomDraw

impl Debug for NETLOGON_GENERIC_INFO

impl Debug for VSS_APPLICATION_LEVEL

impl Debug for CERT_REVOCATION_PARA

impl Debug for IContextMenu3

impl Debug for D3D11_TEX1D_ARRAY_SRV

impl Debug for ITypeComp

impl Debug for ID3D11Texture1D

impl Debug for IDXGIFactoryMedia

impl Debug for D3D12_BUFFER_UAV

impl Debug for WER_REGISTER_FILE_TYPE

impl Debug for WSAPOLLFD

impl Debug for LAYERPLANEDESCRIPTOR

impl Debug for NLSVERSIONINFOEX

impl Debug for ID3D11HullShader

impl Debug for IPersistFolder2

impl Debug for NMLVKEYDOWN

impl Debug for PKU2U_LOGON_SUBMIT_TYPE

impl Debug for CRYPT_CONTEXT_FUNCTIONS

impl Debug for IDXGIKeyedMutex

impl Debug for KERB_QUERY_TKT_CACHE_EX3_RESPONSE

impl Debug for IDefaultFolderMenuInitialize

impl Debug for DISPID_SpeechLexicon

impl Debug for WINUSB_PIPE_INFORMATION_EX

impl Debug for D2D1_GEOMETRY_SIMPLIFICATION_OPTION

impl Debug for IRQ_RANGE

impl Debug for IDelegateItem

impl Debug for IDXGIOutput

impl Debug for SpeechLexiconType

impl Debug for DISPID_SpeechPhraseRule

impl Debug for IShellLinkDataList

impl Debug for DISPID_SpeechRecoContextEvents

impl Debug for ARRAYDESC

impl Debug for ID3D12LibraryReflection

impl Debug for ID3D12RootSignatureDeserializer

impl Debug for IDWriteFontFileEnumerator

impl Debug for VARKIND

impl Debug for CONNECTION_RESOURCE

impl Debug for ID2D1Mesh

impl Debug for LVCOLUMNA

impl Debug for KNONVOLATILE_CONTEXT_POINTERS

impl Debug for IDisplayItem

impl Debug for SAFEARR_UNKNOWN

impl Debug for DXGI_SAMPLE_DESC

impl Debug for D3D12_FILTER_TYPE

impl Debug for IO_DES

impl Debug for VSS_PROVIDER_TYPE

impl Debug for TVITEMEXA

impl Debug for sockaddr_in6

impl Debug for ACTCTXA

impl Debug for IVssExamineWriterMetadataEx2

impl Debug for SIP_ADD_NEWPROVIDER

impl Debug for FILE_ID_INFO

impl Debug for HTTP_SERVER_PROPERTY

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYCRYPTOSESSION_OUTPUT

impl Debug for IVssExamineWriterMetadata

impl Debug for ACTCTX_SECTION_KEYED_DATA

impl Debug for D2D1_GRADIENT_STOP

impl Debug for CREDUI_INFOW

impl Debug for DOMAIN_PASSWORD_INFORMATION

impl Debug for BCRYPT_OID

impl Debug for ID2D1TransformedGeometry

impl Debug for D3D12_TEXCUBE_SRV

impl Debug for SAFEARR_VARIANT

impl Debug for ID3D11ShaderReflection

impl Debug for CRED_MARSHAL_TYPE

impl Debug for POLICY_PRIMARY_DOMAIN_INFO

impl Debug for IApplicationActivationManager

impl Debug for MSV1_0_SUBAUTH_RESPONSE

impl Debug for RPC_HTTP_TRANSPORT_CREDENTIALS_V3_A

impl Debug for CRYPT_ECC_PRIVATE_KEY_INFO

impl Debug for SPGRAMMARSTATE

impl Debug for CRYPT_BIT_BLOB

impl Debug for KERB_QUERY_TKT_CACHE_EX_RESPONSE

impl Debug for WICPixelFormatNumericRepresentation

impl Debug for OLD_LARGE_INTEGER

impl Debug for in_addr_S_un_w

impl Debug for D3D12_QUERY_HEAP_DESC

impl Debug for D3D12_ROOT_DESCRIPTOR_TABLE

impl Debug for SPVACTIONS

impl Debug for RETRIEVAL_POINTERS_BUFFER

impl Debug for SPSERIALIZEDEVENT64

impl Debug for D3D12_FILL_MODE

impl Debug for BCRYPT_HASH_OPERATION_TYPE

impl Debug for DWRITE_HIT_TEST_METRICS

impl Debug for REASON_CONTEXT_Detailed

impl Debug for D2D1_RENDER_TARGET_TYPE

impl Debug for D3D11_CREATE_DEVICE_FLAG

impl Debug for D3D12_INFO_QUEUE_FILTER

impl Debug for CONSOLE_SCREEN_BUFFER_INFOEX

impl Debug for NMDATETIMESTRINGA

impl Debug for WSASERVICECLASSINFOW

impl Debug for D3D12_FEATURE_DATA_ARCHITECTURE

impl Debug for IDXGIAdapter

impl Debug for WICPngTimeProperties

impl Debug for D3D12_LIBRARY_DESC

impl Debug for INamespaceWalk

impl Debug for SPPARTOFSPEECH

impl Debug for KERB_SMART_CARD_PROFILE

impl Debug for KERB_EXTERNAL_TICKET

impl Debug for NMLVCUSTOMDRAW

impl Debug for FILE_END_OF_FILE_INFO

impl Debug for SEC_APPLICATION_PROTOCOL_LIST

impl Debug for D2D1_EXTEND_MODE

impl Debug for WICGifImageDescriptorProperties

impl Debug for D3D11_AES_CTR_IV

impl Debug for SecPkgContext_AuthorityW

impl Debug for SpeechRecognizerState

impl Debug for ISpLexicon

impl Debug for WSANAMESPACE_INFOA

impl Debug for D3D11_ASYNC_GETDATA_FLAG

impl Debug for D3DBLEND

impl Debug for FIND_NAME_BUFFER

impl Debug for D3D11_PARAMETER_DESC

impl Debug for D3D11_AUTHENTICATED_PROCESS_IDENTIFIER_TYPE

impl Debug for D3D11_BUFFER_DESC

impl Debug for D2D_MATRIX_4X3_F

impl Debug for IDWriteNumberSubstitution

impl Debug for ISpEnginePronunciation

impl Debug for ID2D1RoundedRectangleGeometry

impl Debug for IMAGEHLP_SYMBOL64

impl Debug for D3D12_QUERY_DATA_PIPELINE_STATISTICS

impl Debug for SOURCE_MEDIA_W

impl Debug for MSV1_0_PASSTHROUGH_RESPONSE

impl Debug for RPC_BINDING_HANDLE_OPTIONS_V1

impl Debug for TRUSTED_DOMAIN_INFORMATION_EX

impl Debug for NMUPDOWN

impl Debug for BCryptBufferDesc

impl Debug for CorSymVarFlag

impl Debug for D3D11_RENDER_TARGET_VIEW_DESC

impl Debug for VSS_WRITERRESTORE_ENUM

impl Debug for LOCALGROUP_MEMBERS_INFO_3

impl Debug for BCRYPT_OAEP_PADDING_INFO

impl Debug for D3DSAMPLERSTATETYPE

impl Debug for IDirect3DIndexBuffer9

impl Debug for DISPID_SpeechVoiceEvent

impl Debug for IVssWMComponent

impl Debug for D3D12_DESCRIPTOR_HEAP_DESC

impl Debug for DS_DOMAIN_TRUSTSA

impl Debug for D3D12_TILED_RESOURCES_TIER

impl Debug for CERT_CHAIN_CONTEXT

impl Debug for HTTP_SERVICE_CONFIG_SSL_PARAM

impl Debug for D3DDEVTYPE

impl Debug for D3D12_SO_DECLARATION_ENTRY

impl Debug for NMBCDROPDOWN

impl Debug for D3D11_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS

impl Debug for DXGI_ADAPTER_FLAG

impl Debug for ID2D1SolidColorBrush

impl Debug for D3D11_TEXTURE_ADDRESS_MODE

impl Debug for D3D12_TEXTURE_ADDRESS_MODE

impl Debug for TEXTMETRICA

impl Debug for IAccessibleObject

impl Debug for IMMNotificationClient

impl Debug for NEGOTIATE_MESSAGES

impl Debug for D3D12_CPU_PAGE_PROPERTY

impl Debug for SPPHRASE_50

impl Debug for OFNOTIFYA

impl Debug for D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_INPUT

impl Debug for SEC_WINNT_AUTH_BYTE_VECTOR

impl Debug for D3D12_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT

impl Debug for DEVPRIVATE_RESOURCE

impl Debug for D2D1_FEATURE_LEVEL

impl Debug for SecPkgCredentials_SSIProviderW

impl Debug for COPYFILE2_MESSAGE

impl Debug for KERB_QUERY_TKT_CACHE_REQUEST

impl Debug for TEXTMETRICW

impl Debug for ID3D11ClassLinkage

impl Debug for SP_FILE_COPY_PARAMS_A

impl Debug for D3DTEXTURESTAGESTATETYPE

impl Debug for NMLVDISPINFOW

impl Debug for NMITEMACTIVATE

impl Debug for SPWORD

impl Debug for D3D12_BOX

impl Debug for D3D11_TEX2D_ARRAY_RTV

impl Debug for ID3D11CommandList

impl Debug for TRUSTED_DOMAIN_SUPPORTED_ENCRYPTION_TYPES

impl Debug for DXGI_SHARED_RESOURCE

impl Debug for BINARY_BLOB_CREDENTIAL_INFO

impl Debug for DISPID_SpeechAudio

impl Debug for ISpTranscript

impl Debug for CM_NOTIFY_ACTION

impl Debug for D3D11_TEX2D_VPIV

impl Debug for D2D1_DASH_STYLE

impl Debug for CERT_RDN_ATTR

impl Debug for VOLUME_DISK_EXTENTS

impl Debug for NMTOOLBARW

impl Debug for MSV1_0_LM20_LOGON_PROFILE

impl Debug for FILE_FULL_DIR_INFO

impl Debug for MONITORINFOEXA

impl Debug for IContextMenuCB

impl Debug for IQueryCancelAutoPlay

impl Debug for SEC_APPLICATION_PROTOCOL_NEGOTIATION_STATUS

impl Debug for NETLOGON_LOGON_INFO_CLASS

impl Debug for CRYPT_PROVIDER_REF

impl Debug for IMAGE_NT_HEADERS32

impl Debug for FILE_RENAME_INFO

impl Debug for INamespaceWalkCB

impl Debug for D3D12_TILE_SHAPE

impl Debug for CENTRAL_ACCESS_POLICY_ENTRY

impl Debug for PKU2U_CREDUI_CONTEXT

impl Debug for MFCARD_RESOURCE

impl Debug for IFolderViewSettings

impl Debug for KERB_SUBMIT_TKT_REQUEST

impl Debug for RPC_SECURITY_QOS_V2_W_union

impl Debug for WSANAMESPACE_INFOEXA

impl Debug for MSV1_0_S4U_LOGON

impl Debug for PARAMDESC

impl Debug for HTTP_LOG_FIELDS_DATA

impl Debug for WCRANGE

impl Debug for PSAPI_WORKING_SET_INFORMATION

impl Debug for DRAWTEXTPARAMS

impl Debug for D3D12_FEATURE_DATA_FEATURE_LEVELS

impl Debug for D3DVERTEXBLENDFLAGS

impl Debug for IDXGIFactory3

impl Debug for VSS_RESTORE_TYPE

impl Debug for HTTP_SERVICE_CONFIG_URLACL_SET

impl Debug for D2D1_CAP_STYLE

impl Debug for D3D11_DSV_FLAG

impl Debug for ip_mreq

impl Debug for D3D_INCLUDE_TYPE

impl Debug for ID3D12Heap

impl Debug for D3D12_RESOURCE_BARRIER

impl Debug for RPC_SECURITY_QOS_V4_W

impl Debug for PROCESS_INFORMATION_CLASS

impl Debug for D3D11_CONSERVATIVE_RASTERIZATION_TIER

impl Debug for IShellFolder

impl Debug for IMAGE_OPTIONAL_HEADER64

impl Debug for IUserNotification

impl Debug for ID3D12FunctionReflection

impl Debug for USER_INFO_10

impl Debug for CERT_CHAIN_ELEMENT

impl Debug for HTTP_SERVICE_CONFIG_SSL_SET

impl Debug for BCRYPT_RSAKEY_BLOB

impl Debug for D3D11_SHADER_MIN_PRECISION_SUPPORT

impl Debug for IPropertyUI

impl Debug for D3DLOCKED_BOX

impl Debug for COORD

impl Debug for DFS_SITENAME_INFO

impl Debug for SPLEXICONTYPE

impl Debug for IRQ_RESOURCE_32

impl Debug for DXGI_OUTDUPL_MOVE_RECT

impl Debug for D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_COUNT_OUTPUT

impl Debug for IDragSourceHelper

impl Debug for SpeechDisplayAttributes

impl Debug for D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE_OUTPUT

impl Debug for D3D12_FEATURE_DATA_FORMAT_INFO

impl Debug for RPC_SECURITY_QOS_V5_A_union

impl Debug for HIDP_KEYBOARD_MODIFIER_STATE

impl Debug for SPTEXTSELECTIONINFO

impl Debug for COMDLG_FILTERSPEC

impl Debug for INamespaceWalkCB2

impl Debug for D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS

impl Debug for WSANSCLASSINFOA

impl Debug for MS_ADDINFO_CATALOGMEMBER

impl Debug for CS_RESOURCE

impl Debug for KERB_QUERY_TKT_CACHE_EX2_RESPONSE

impl Debug for POLICY_AUDIT_EVENTS_INFO

impl Debug for NMCUSTOMTEXT

impl Debug for CERT_CONTEXT

impl Debug for NUMBERFMTW

impl Debug for ADDRINFOA

impl Debug for DOCINFOW

impl Debug for CRYPT_OID_FUNC_ENTRY

impl Debug for RTL_SRWLOCK

impl Debug for BCRYPT_PSS_PADDING_INFO

impl Debug for D3DINDEXBUFFER_DESC

impl Debug for SPRECOEVENTFLAGS

impl Debug for HEAPLIST32

impl Debug for ICategorizer

impl Debug for METAFILEPICT

impl Debug for DXGI_MODE_SCANLINE_ORDER

impl Debug for D3D10_SHADER_TYPE_DESC

impl Debug for IMAGE_DEBUG_INFORMATION

impl Debug for SPINTERFERENCE

impl Debug for USER_INFO_11

impl Debug for NAME_BUFFER

impl Debug for SpeechWordType

impl Debug for HTTP_DATA_CHUNK_FromFileHandle

impl Debug for INameSpaceTreeControlEvents

impl Debug for PROCESSOR_NUMBER

impl Debug for USER_MODALS_INFO_0

impl Debug for GOFFSET

impl Debug for TASKDIALOG_COMMON_BUTTON_FLAGS

impl Debug for SEC_WINNT_AUTH_IDENTITY_W

impl Debug for ID3D10Blob

impl Debug for SecPkgContext_SessionAppData

impl Debug for PROCESS_MITIGATION_POLICY

impl Debug for DRAWITEMSTRUCT

impl Debug for DWRITE_TEXT_RANGE

impl Debug for MOUSEINPUT

impl Debug for SpeechPartOfSpeech

impl Debug for RAWINPUTDEVICELIST

impl Debug for NMRBAUTOSIZE

impl Debug for WORD_SIZEDARR

impl Debug for IObjectWithProgID

impl Debug for ServerInformation

impl Debug for ITransferSource

impl Debug for D3D11_TEX3D_UAV

impl Debug for IDWriteTextAnalysisSink

impl Debug for NMTBHOTITEM

impl Debug for SAFEARRAY

impl Debug for HTTP_PROTECTION_LEVEL_INFO

impl Debug for HTTP_REQUEST_CHANNEL_BIND_STATUS

impl Debug for TTHITTESTINFOW

impl Debug for D3D12_RENDER_TARGET_VIEW_DESC

impl Debug for CS_DES

impl Debug for ID3D10ShaderReflectionVariable

impl Debug for D3D11_TEX1D_DSV

impl Debug for D3D12_TILE_MAPPING_FLAGS

impl Debug for RPC_POLICY

impl Debug for D3DTEXTUREOP

impl Debug for SCHANNEL_CRED

impl Debug for NETLOGON_INFO_3

impl Debug for IUserNotificationCallback

impl Debug for HTTP_AUTHENTICATION_HARDENING_LEVELS

impl Debug for D3DRECT

impl Debug for DISPID_SpeechRecoResult

impl Debug for POLYTEXTA

impl Debug for KERB_BINDING_CACHE_ENTRY_DATA

impl Debug for ISpShortcut

impl Debug for in6_addr

impl Debug for D3D11_BUFFER_UAV_FLAG

impl Debug for SecPkgContext_UserFlags

impl Debug for RID_DEVICE_INFO

impl Debug for D3DBLENDOP

impl Debug for USER_MODALS_INFO_1005

impl Debug for D3D12_TEX3D_RTV

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION_INPUT

impl Debug for D3DDECLUSAGE

impl Debug for CERT_OR_CRL_BUNDLE

impl Debug for SP_REGISTER_CONTROL_STATUSA

impl Debug for USB_CONFIGURATION_DESCRIPTOR

impl Debug for DELETEITEMSTRUCT

impl Debug for DWRITE_CLUSTER_METRICS

impl Debug for WSASERVICECLASSINFOA

impl Debug for SPCFGRULEATTRIBUTES

impl Debug for ID3D11Buffer

impl Debug for HTTP_RESPONSE_INFO

impl Debug for SPEVENTENUM

impl Debug for NET_VALIDATE_PASSWORD_CHANGE_INPUT_ARG

impl Debug for D3D12_FENCE_FLAGS

impl Debug for LVCOLUMNW

impl Debug for ID3D12Device

impl Debug for D3D11_QUERY_DATA_PIPELINE_STATISTICS

impl Debug for CONSOLE_FONT_INFOEX

impl Debug for IVisualProperties

impl Debug for D3DCOMPOSERECTDESC

impl Debug for D3DMATRIX

impl Debug for SP_CLASSINSTALL_HEADER

impl Debug for SCRIPT_CONTROL

impl Debug for VSS_WRITER_STATE

impl Debug for ICDBurnExt

impl Debug for CREATESTRUCTW

impl Debug for D3D12_RESOURCE_STATES

impl Debug for DFS_INFO_105

impl Debug for D3D12_VERTEX_BUFFER_VIEW

impl Debug for HIDP_UNKNOWN_TOKEN

impl Debug for BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO

impl Debug for HEAP_SUMMARY

impl Debug for WICComponentEnumerateOptions

impl Debug for DWRITE_FONT_FILE_TYPE

impl Debug for RPC_SECURITY_QOS_V5_W

impl Debug for EVT_VARIANT

impl Debug for FOCUS_EVENT_RECORD

impl Debug for IDispatch

impl Debug for TYPEFLAGS

impl Debug for HTTP_CONNECTION_LIMIT_INFO

impl Debug for D3D11_TILED_RESOURCES_TIER

impl Debug for IDXGIFactory

impl Debug for D3DMATERIALCOLORSOURCE

impl Debug for POWER_REQUEST_TYPE

impl Debug for DXGI_FRAME_STATISTICS

impl Debug for DWRITE_FONT_FEATURE

impl Debug for IDXGISwapChain3

impl Debug for OFNOTIFYEXA

impl Debug for KERB_TICKET_LOGON

impl Debug for NMDATETIMEFORMATQUERYA

impl Debug for SCRIPT_STATE

impl Debug for SR_SECURITY_DESCRIPTOR

impl Debug for READER_SEL_RESPONSE

impl Debug for SQL_YEAR_MONTH_STRUCT

impl Debug for MSA_INFO_STATE

impl Debug for D3DSHADEMODE

impl Debug for DFS_TARGET_PRIORITY_CLASS

impl Debug for D3D12_RESOURCE_FLAGS

impl Debug for IDirect3DCubeTexture9

impl Debug for RETRIEVAL_POINTERS_BUFFER_INTERNAL

impl Debug for MONITORINFO

impl Debug for D2D_MATRIX_5X4_F

impl Debug for SecPkgContext_NegotiationInfoA

impl Debug for PROCESSOR_POWER_POLICY_INFO

impl Debug for SPVCONTEXT

impl Debug for SecPkgContext_ProtoInfoW

impl Debug for IDWriteGdiInterop

impl Debug for ENHMETAHEADER

impl Debug for LOAD_DLL_DEBUG_INFO

impl Debug for IAudioRenderClient

impl Debug for NMLVGETINFOTIPA

impl Debug for CENTRAL_ACCESS_POLICY

impl Debug for IExplorerBrowser

impl Debug for DISCDLGSTRUCTW

impl Debug for RPC_SECURITY_QOS_V2_A

impl Debug for MSLLHOOKSTRUCT

impl Debug for DSROLE_OPERATION_STATE

impl Debug for IWICBitmapScaler

impl Debug for PSS_QUERY_INFORMATION_CLASS

impl Debug for NMTVASYNCDRAW

impl Debug for D2D1_STROKE_STYLE_PROPERTIES

impl Debug for D3D11_AUTHENTICATED_CONFIGURE_ACCESSIBLE_ENCRYPTION_INPUT

impl Debug for ISymUnmanagedBinder

impl Debug for NMLVCACHEHINT

impl Debug for FIND_NAME_HEADER

impl Debug for DATETIMEPICKERINFO

impl Debug for RAWMOUSE

impl Debug for D2D1_BEZIER_SEGMENT

impl Debug for SecPkgContext_NegoKeys

impl Debug for DWRITE_GLYPH_METRICS

impl Debug for D3D12_TEX2D_ARRAY_RTV

impl Debug for BCRYPT_OID_LIST

impl Debug for COMMCONFIG

impl Debug for servent

impl Debug for NMTVDISPINFOA

impl Debug for IAppVisibility

impl Debug for IAccessibilityDockingServiceCallback

impl Debug for NMTVITEMCHANGE

impl Debug for IFileSystemBindData

impl Debug for CRYPT_PROPERTY_REF

impl Debug for IDirect3DSwapChain9Ex

impl Debug for D3D11_FEATURE_DATA_THREADING

impl Debug for D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE

impl Debug for HTTP_DATA_CHUNK_FromFragmentCacheEx

impl Debug for D3D12_SHADER_COMPONENT_MAPPING

impl Debug for SYSTEM_LOGICAL_PROCESSOR_INFORMATION

impl Debug for SP_REMOVEDEVICE_PARAMS

impl Debug for ANON_OBJECT_HEADER_BIGOBJ

impl Debug for NMSELCHANGE

impl Debug for IWICBitmap

impl Debug for DEVICE_POWER_STATE

impl Debug for RPC_CLIENT_INFORMATION1

impl Debug for TRUSTED_POSIX_OFFSET_INFO

impl Debug for PDH_COUNTER_PATH_ELEMENTS_A

impl Debug for D3D12_DEPTH_STENCIL_VIEW_DESC

impl Debug for SPGRAMMARWORDTYPE

impl Debug for NMREBARCHILDSIZE

impl Debug for FILE_NOTIFY_INFORMATION

impl Debug for SC_STATUS_TYPE

impl Debug for DISPID_SpeechPhraseElements

impl Debug for IWizardSite

impl Debug for DISPIDSPTSI

impl Debug for PKU2U_CERTIFICATE_S4U_LOGON

impl Debug for ACCESS_INFO_1

impl Debug for SF_TYPE

impl Debug for WOW64_LDT_ENTRY_Bytes

impl Debug for HTTP_LOGGING_TYPE

impl Debug for IDirect3DVolumeTexture9

impl Debug for IInitializeWithPropertyStore

impl Debug for DXGI_FORMAT

impl Debug for FIRMWARE_TYPE

impl Debug for IRestrictedErrorInfo

impl Debug for ID3D12ShaderReflection

impl Debug for SpeechRecognitionType

impl Debug for RASTERIZER_STATUS

impl Debug for BITMAP

impl Debug for D2D1_ROUNDED_RECT

impl Debug for OUTLINETEXTMETRICA

impl Debug for D3D12_DEPTH_STENCIL_DESC

impl Debug for CRYPT_TIME_STAMP_REQUEST_INFO

impl Debug for TRUSTED_DOMAIN_NAME_INFO

impl Debug for ID3D11VideoProcessorEnumerator

impl Debug for D3D_SHADER_DATA

impl Debug for SpeechDiscardType

impl Debug for CTL_VERIFY_USAGE_PARA

impl Debug for CABINET_INFO_W

impl Debug for AsyncIUnknown

impl Debug for BCRYPT_MULTI_OPERATION_TYPE

impl Debug for D3D11_AUTHENTICATED_QUERY_INPUT

impl Debug for IDataObjectProvider

impl Debug for NETCONNECTINFOSTRUCT

impl Debug for LUID_AND_ATTRIBUTES

impl Debug for DFS_INFO_103

impl Debug for TTTOOLINFOW

impl Debug for PROCESS_DPI_AWARENESS

impl Debug for D3D11_VPOV_DIMENSION

impl Debug for SQL_NUMERIC_STRUCT

impl Debug for SCARD_T1_REQUEST

impl Debug for SpeechAudioFormatType

impl Debug for DSAFIPSVERSION_ENUM

impl Debug for D3DAUTHENTICATEDCHANNEL_QUERYCRYPTOSESSION_INPUT

impl Debug for NMTBGETINFOTIPW

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

impl Debug for CpuPool

impl Debug for Builder

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

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

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

impl Debug for Error
[src]

impl Debug for InvalidChunkSize
[src]

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

impl Debug for Error

impl Debug for LevelFilter
[src]

impl Debug for ParseLevelError
[src]

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

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

impl Debug for SetLoggerError
[src]

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

impl Debug for Level
[src]

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

impl Debug for FromStrError
[src]

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

impl Debug for Mime
[src]

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

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

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

impl Debug for TcpBuilder
[src]

impl Debug for UdpBuilder
[src]

impl Debug for SIMPLE_ENCODE_SET

impl Debug for USERINFO_ENCODE_SET

impl Debug for DEFAULT_ENCODE_SET

impl Debug for QUERY_ENCODE_SET

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

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

impl Debug for PATH_SEGMENT_ENCODE_SET

impl<T> Debug for Waiting<T>

impl<T> Debug for Receiver<T>

impl Debug for Canceled

impl<T> Debug for Sender<T>

impl Debug for Timespec
[src]

impl Debug for Duration
[src]

impl Debug for OutOfRangeError
[src]

impl Debug for SteadyTime
[src]

impl Debug for ParseError
[src]

impl Debug for Tm
[src]

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

impl Debug for TcpListener
[src]

impl Debug for CoreId
[src]

impl Debug for Timeout
[src]

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

impl Debug for Remote
[src]

impl Debug for UdpSocket
[src]

impl Debug for TcpStream
[src]

impl Debug for Handle
[src]

impl Debug for Overlapped
[src]

impl Debug for TcpStream
[src]

impl Debug for Events
[src]

impl Debug for TcpListener
[src]

impl Debug for Binding
[src]

impl Debug for Ready
[src]

impl Debug for UdpSocket
[src]

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

impl Debug for PollOpt
[src]

impl Debug for Event
[src]

impl Debug for Registration
[src]

impl Debug for Token
[src]

impl Debug for SetReadiness
[src]

impl Debug for Poll
[src]

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

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

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

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

impl Debug for CompletionStatus
[src]

impl Debug for Overlapped
[src]

impl Debug for AnonWrite
[src]

impl Debug for AnonRead
[src]

impl Debug for NamedPipeBuilder
[src]

impl Debug for CompletionPort
[src]

impl Debug for NamedPipe
[src]

impl Debug for Spawn
[src]

impl Debug for TurnError
[src]

impl Debug for Runtime
[src]

impl Debug for Builder
[src]

impl Debug for RunTimeoutError
[src]

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

impl Debug for Handle
[src]

impl Debug for Builder
[src]

impl Debug for TaskExecutor
[src]

impl Debug for Turn
[src]

impl Debug for Runtime
[src]

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

impl Debug for Shutdown
[src]

impl Debug for RunError
[src]

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

impl Debug for TaskExecutor
[src]

impl Debug for Handle
[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl Debug for SpawnError
[src]

impl Debug for DefaultExecutor
[src]

impl Debug for ParkThread
[src]

impl Debug for EnterError
[src]

impl Debug for ParkError
[src]

impl Debug for Enter
[src]

impl Debug for UnparkThread
[src]

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

impl Debug for MetadataFuture
[src]

impl<P> Debug for MetadataFuture<P> where
    P: Debug + AsRef<Path> + Send + 'static, 
[src]

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

impl Debug for File
[src]

impl Debug for Stdout
[src]

impl Debug for Stderr
[src]

impl Debug for Stdin
[src]

impl Debug for OpenOptions
[src]

impl Debug for SeekFuture
[src]

impl Debug for Shutdown
[src]

impl Debug for ThreadPool
[src]

impl Debug for BlockingError
[src]

impl Debug for ParkError
[src]

impl Debug for DefaultUnpark
[src]

impl Debug for DefaultPark
[src]

impl Debug for Builder
[src]

impl Debug for Worker
[src]

impl Debug for Sender
[src]

impl Debug for WorkerId
[src]

impl<T> Debug for Stealer<T>

impl<T> Debug for Deque<T>

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

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

impl<T> Debug for Atomic<T>

impl Debug for Collector

impl Debug for Guard

impl Debug for Handle

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

impl<T> Debug for Owned<T>

impl<T> Debug for CapacityError<T>
[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<'a, T> Debug for ScopedJoinHandle<'a, T>

impl<'a> Debug for Scope<'a>

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

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

impl Debug for Always

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

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

impl Debug for Gamma
[src]

impl Debug for LogNormal
[src]

impl Debug for ThreadRng
[src]

impl Debug for ReseedWithDefault
[src]

impl Debug for StudentT
[src]

impl Debug for ChaChaRng
[src]

impl Debug for StandardNormal
[src]

impl<Sup> Debug for RandSample<Sup> where
    Sup: Debug
[src]

impl Debug for Isaac64Rng
[src]

impl Debug for JitterRng
[src]

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

impl Debug for TimerError
[src]

impl Debug for IsaacRng
[src]

impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr> where
    R: Debug,
    Rsdr: Debug
[src]

impl Debug for Exp1
[src]

impl Debug for StdRng
[src]

impl Debug for ChiSquared
[src]

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

impl Debug for FisherF
[src]

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

impl Debug for Normal
[src]

impl<'a, R> Debug for AsciiGenerator<'a, R> where
    R: 'a + Debug
[src]

impl Debug for XorShiftRng
[src]

impl Debug for Exp
[src]

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

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

impl Debug for OsRng
[src]

impl Debug for Handle
[src]

impl Debug for SetFallbackError
[src]

impl Debug for Reactor
[src]

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

impl Debug for Registration
[src]

impl Debug for Turn
[src]

impl Debug for Background
[src]

impl Debug for Interval
[src]

impl Debug for Handle
[src]

impl Debug for Delay
[src]

impl Debug for Error
[src]

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

impl Debug for Clock
[src]

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

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

impl Debug for Turn
[src]

impl Debug for TcpStream
[src]

impl Debug for Incoming
[src]

impl Debug for ConnectFuture
[src]

impl Debug for TcpListener
[src]

impl Debug for UdpSocket
[src]

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

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

impl<C> Debug for UdpFramed<C> where
    C: Debug
[src]

impl Debug for BytesCodec
[src]

impl Debug for LinesCodec
[src]

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

impl<Kind, P> Debug for Connect<Kind, P>
[src]

impl<T> Debug for Pipeline<T> where
    T: Dispatch + Debug,
    <T as Dispatch>::In: Debug,
    <T as Dispatch>::BodyIn: Debug,
    <T as Dispatch>::BodyOut: Debug,
    <T as Dispatch>::Error: Debug,
    <T as Dispatch>::Stream: Debug
[src]

impl<Kind, P> Debug for TcpServer<Kind, P> where
    Kind: Debug,
    P: Debug
[src]

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

impl<T> Debug for Multiplex<T> where
    T: Dispatch + Debug,
    <T as Dispatch>::In: Debug,
    <T as Dispatch>::Out: Debug,
    <T as Dispatch>::BodyIn: Debug,
    <T as Dispatch>::BodyOut: Debug,
    <T as Dispatch>::Error: Debug,
    <T as Dispatch>::Stream: Debug
[src]

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

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

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

impl<Kind, P> Debug for TcpClient<Kind, P> where
    Kind: Debug,
    P: Debug
[src]

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

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

impl<T, B> Debug for Message<T, B> where
    T: Debug
[src]

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

impl<T, I> Debug for Slab<T, I> where
    I: Debug,
    T: Debug

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

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

impl Debug for SetLoggerError
[src]

impl Debug for LogLocation
[src]

impl Debug for LogLevelFilter
[src]

impl Debug for ShutdownLoggerError
[src]

impl Debug for LogLevel
[src]

impl Debug for MaxLogLevelFilter
[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 MaybeHttpsStream<T>
[src]

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

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

impl Debug for Protocol
[src]

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

impl Debug for Error
[src]

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

impl Debug for Direction

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

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

impl Debug for Algorithm

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

impl Debug for CertContext

impl Debug for Protocol

impl Debug for Builder

impl Debug for CertStore

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

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

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

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

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

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

impl<'de, E> Debug for BorrowedStrDeserializer<'de, 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<A> Debug for SeqAccessDeserializer<A> where
    A: Debug
[src]

impl Debug for Error
[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<'de, E> Debug for BorrowedBytesDeserializer<'de, 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 Debug for IgnoredAny
[src]

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

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

impl Debug for Value
[src]

impl Debug for CompactFormatter
[src]

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

impl Debug for Number
[src]

impl Debug for Category
[src]

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

impl Debug for Error
[src]

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

impl Debug for OpaqueOrigin
[src]

impl Debug for Origin
[src]

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

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

impl Debug for Position
[src]

impl Debug for SyntaxViolation
[src]

impl Debug for ParseError
[src]

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

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

impl Debug for SocketAddrs
[src]

impl Debug for Errors

impl Debug for BidiClass

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

impl Debug for Level

impl Debug for Error

impl Debug for ParagraphInfo

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

impl Debug for IsNormalized

impl Debug for Error
[src]

impl Debug for ParserConfig
[src]

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

impl Debug for NamespaceStack
[src]

impl Debug for Namespace
[src]

impl Debug for OwnedAttribute
[src]

impl Debug for ErrorKind
[src]

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

impl Debug for EmitterConfig
[src]

impl Debug for EmitterError
[src]

impl Debug for TextPosition
[src]

impl Debug for OwnedName
[src]

impl Debug for XmlVersion
[src]

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

impl Debug for XmlEvent
[src]

Implementors