1.0.0[][src]Trait esp_idf_sys::std::fmt::Debug

#[lang = "debug_trait"]
pub trait Debug {
    fn fmt(&self, f: &mut Formatter) -> Result<(), Error>;
}

? formatting.

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

Generally speaking, you should just derive a Debug implementation.

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

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

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

Examples

Deriving an implementation:

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

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

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

Manually implementing:

use std::fmt;

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

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

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

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

This outputs:

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

There are a number of debug_* methods on Formatter to help you with manual implementations, such as debug_struct.

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

Pretty-printing with #?:

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

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

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

This outputs:

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

Required methods

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

Formats the value using the given formatter.

Examples

use std::fmt;

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

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

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

Implementations on Foreign Types

impl Debug for ParseFloatError[src]

Loading content...

Implementors

impl Debug for ![src]

impl Debug for ()[src]

impl Debug for esp_idf_sys::std::cmp::Ordering[src]

impl Debug for Infallible[src]

impl Debug for c_void[src]

impl Debug for Alignment[src]

impl Debug for FpCategory[src]

impl Debug for IntErrorKind[src]

impl Debug for SearchStep[src]

impl Debug for esp_idf_sys::std::sync::atomic::Ordering[src]

impl Debug for AllocErr[src]

impl Debug for CannotReallocInPlace[src]

impl Debug for Excess[src]

impl Debug for Layout[src]

impl Debug for LayoutErr[src]

impl Debug for TypeId[src]

impl Debug for CpuidResult[src]

impl Debug for __m128[src]

impl Debug for __m128d[src]

impl Debug for __m128i[src]

impl Debug for __m256[src]

impl Debug for __m256d[src]

impl Debug for __m256i[src]

impl Debug for __m512[src]

impl Debug for __m512d[src]

impl Debug for __m512i[src]

impl Debug for __m64[src]

impl Debug for TryFromSliceError[src]

impl Debug for esp_idf_sys::std::ascii::EscapeDefault[src]

impl Debug for BorrowError[src]

impl Debug for BorrowMutError[src]

impl Debug for CharTryFromError[src]

impl Debug for DecodeUtf16Error[src]

impl Debug for esp_idf_sys::std::char::EscapeDebug[src]

impl Debug for esp_idf_sys::std::char::EscapeDefault[src]

impl Debug for esp_idf_sys::std::char::EscapeUnicode[src]

impl Debug for ParseCharError[src]

impl Debug for ToLowercase[src]

impl Debug for ToUppercase[src]

impl Debug for UnicodeVersion[src]

impl Debug for Error[src]

impl Debug for SipHasher[src]

impl Debug for PhantomPinned[src]

impl Debug for NonZeroI128[src]

impl Debug for NonZeroI16[src]

impl Debug for NonZeroI32[src]

impl Debug for NonZeroI64[src]

impl Debug for NonZeroI8[src]

impl Debug for NonZeroIsize[src]

impl Debug for NonZeroU128[src]

impl Debug for NonZeroU16[src]

impl Debug for NonZeroU32[src]

impl Debug for NonZeroU64[src]

impl Debug for NonZeroU8[src]

impl Debug for NonZeroUsize[src]

impl Debug for ParseIntError[src]

impl Debug for TryFromIntError[src]

impl Debug for RangeFull[src]

impl Debug for NoneError[src]

impl Debug for Utf8Lossy[src]

impl Debug for ParseBoolError[src]

impl Debug for Utf8Error[src]

impl Debug for AtomicBool[src]

impl Debug for AtomicI128[src]

impl Debug for AtomicI16[src]

impl Debug for AtomicI32[src]

impl Debug for AtomicI64[src]

impl Debug for AtomicI8[src]

impl Debug for AtomicIsize[src]

impl Debug for AtomicU128[src]

impl Debug for AtomicU16[src]

impl Debug for AtomicU32[src]

impl Debug for AtomicU64[src]

impl Debug for AtomicU8[src]

impl Debug for AtomicUsize[src]

impl Debug for RawWaker[src]

impl Debug for RawWakerVTable[src]

impl Debug for Waker[src]

impl Debug for Duration[src]

impl Debug for ETSEventTag[src]

impl Debug for KernelFrame[src]

impl Debug for UserFrame[src]

impl Debug for XtExcFrame[src]

impl Debug for XtSolFrame[src]

impl Debug for _Bigint[src]

impl Debug for _ETSTIMER_[src]

impl Debug for __sFILE_fake[src]

impl Debug for __sbuf[src]

impl Debug for __tm[src]

impl Debug for __va_list_tag[src]

impl Debug for _atexit[src]

impl Debug for _bindgen_ty_1__bindgen_ty_10__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_11__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_12__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_13__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_14__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_15__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_16__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_17__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_18__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_19__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_20__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_21__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_22__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_2__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_3__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_4__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_5__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_6__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_7__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_8__bindgen_ty_1[src]

impl Debug for _bindgen_ty_1__bindgen_ty_9__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_10__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_11__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_12__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_13__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_14__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_15__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_16__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_17__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_18__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_19__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_20__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_21__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_22__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_23__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_24__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_25__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_26__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_27__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_28__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_29__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_2__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_30__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_31__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_3__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_4__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_5__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_6__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_7__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_8__bindgen_ty_1[src]

impl Debug for _bindgen_ty_2__bindgen_ty_9__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_2__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_3__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_4__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_5__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_6__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_7__bindgen_ty_1[src]

impl Debug for _bindgen_ty_3__bindgen_ty_8__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_10__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_11__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_12__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_13__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_14__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_15__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_16__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_17__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_18__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_19__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_20__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_21__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_22__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_23__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_24__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_25__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_26__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_27__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_28__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_29__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_2__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_30__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_31__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_32__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_33__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_34__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_35__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_36__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_37__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_3__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_4__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_5__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_6__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_7__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_8__bindgen_ty_1[src]

impl Debug for _bindgen_ty_5__bindgen_ty_9__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_10__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_11__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_12__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_13__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_2__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_3__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_4__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_5__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_6__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_7__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_8__bindgen_ty_1[src]

impl Debug for _bindgen_ty_6__bindgen_ty_9__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_10__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_11__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_12__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_13__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_14__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_15__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_16__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_17__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_18__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_19__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_20__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_21__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_22__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_23__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_24__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_25__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_25__bindgen_ty_2[src]

impl Debug for _bindgen_ty_7__bindgen_ty_26__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_27__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_28__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_2__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_3__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_4__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_5__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_6__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_7__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_8__bindgen_ty_1[src]

impl Debug for _bindgen_ty_7__bindgen_ty_9__bindgen_ty_1[src]

impl Debug for _glue[src]

impl Debug for _mprec[src]

impl Debug for _on_exit_args[src]

impl Debug for _rand48[src]

impl Debug for _reent[src]

impl Debug for _types_fd_set[src]

impl Debug for can_filter_config_t[src]

impl Debug for can_general_config_t[src]

impl Debug for can_message_t[src]

impl Debug for can_status_info_t[src]

impl Debug for can_timing_config_t[src]

impl Debug for cookie_io_functions_t[src]

impl Debug for div_t[src]

impl Debug for esp_chip_info_t[src]

impl Debug for esp_timer[src]

impl Debug for esp_timer_create_args_t[src]

impl Debug for gpio_config_t[src]

impl Debug for i2c_config_t__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for i2c_config_t__bindgen_ty_1__bindgen_ty_2[src]

impl Debug for i2s_config_t[src]

impl Debug for i2s_event_t[src]

impl Debug for i2s_pin_config_t[src]

impl Debug for intr_handle_data_t[src]

impl Debug for itimerspec[src]

impl Debug for ldiv_t[src]

impl Debug for ledc_channel_config_t[src]

impl Debug for lldesc_chain_s[src]

impl Debug for lldesc_s__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for lldiv_t[src]

impl Debug for max_align_t[src]

impl Debug for mcpwm_carrier_config_t[src]

impl Debug for mcpwm_config_t[src]

impl Debug for mcpwm_pin_config_t[src]

impl Debug for multi_heap_info[src]

impl Debug for multi_heap_info_t[src]

impl Debug for portMUX_TYPE[src]

impl Debug for pthread_attr_t[src]

impl Debug for pthread_condattr_t[src]

impl Debug for pthread_mutexattr_t[src]

impl Debug for pthread_once_t[src]

impl Debug for rmt_item32_t__bindgen_ty_1__bindgen_ty_1[src]

impl Debug for rmt_rx_config_t[src]

impl Debug for rmt_tx_config_t[src]

impl Debug for rmt_tx_end_callback_t[src]

impl Debug for sched_param[src]

impl Debug for soc_memory_region_t[src]

impl Debug for soc_memory_type_desc_t[src]

impl Debug for soc_reserved_region_t[src]

impl Debug for spi_bus_config_t[src]

impl Debug for spi_device_interface_config_t[src]

impl Debug for spi_device_t[src]

impl Debug for spi_signal_conn_t[src]

impl Debug for spi_slave_interface_config_t[src]

impl Debug for spi_slave_transaction_t[src]

impl Debug for timer_config_t[src]

impl Debug for timespec[src]

impl Debug for tx_ampdu_entry_s[src]

impl Debug for uart_config_t[src]

impl Debug for uart_event_t[src]

impl Debug for uart_intr_config_t[src]

impl Debug for xLIST[src]

impl Debug for xLIST_ITEM[src]

impl Debug for xMEMORY_REGION[src]

impl Debug for xMINI_LIST_ITEM[src]

impl Debug for xMPU_SETTINGS[src]

impl Debug for xSTATIC_EVENT_GROUP[src]

impl Debug for xSTATIC_LIST[src]

impl Debug for xSTATIC_LIST_ITEM[src]

impl Debug for xSTATIC_MINI_LIST_ITEM[src]

impl Debug for xSTATIC_TCB[src]

impl Debug for xSTATIC_TIMER[src]

impl Debug for xTASK_PARAMETERS[src]

impl Debug for xTASK_SNAPSHOT[src]

impl Debug for xTASK_STATUS[src]

impl Debug for xTIME_OUT[src]

impl Debug for bool[src]

impl Debug for char[src]

impl Debug for dyn Any + 'static[src]

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

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

impl Debug for f32[src]

impl Debug for f64[src]

impl Debug for i8[src]

impl Debug for i16[src]

impl Debug for i32[src]

impl Debug for i64[src]

impl Debug for i128[src]

impl Debug for isize[src]

impl Debug for str[src]

impl Debug for u8[src]

impl Debug for u16[src]

impl Debug for u32[src]

impl Debug for u64[src]

impl Debug for u128[src]

impl Debug for usize[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<'a> Debug for esp_idf_sys::std::str::EscapeDebug<'a>[src]

impl<'a> Debug for esp_idf_sys::std::str::EscapeDefault<'a>[src]

impl<'a> Debug for esp_idf_sys::std::str::EscapeUnicode<'a>[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<I, St, F> Debug for Scan<I, St, F> where
    I: Debug,
    St: Debug
[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<I, U, F> Debug for FlatMap<I, U, F> where
    I: Debug,
    U: IntoIterator,
    <U as IntoIterator>::IntoIter: Debug
[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<Storage: Debug, Align: Debug> Debug for __BindgenBitfieldUnit<Storage, Align>[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading content...