Trait mem_dbg::MemDbgImpl
source · pub trait MemDbgImpl: MemSize {
// Provided methods
fn _mem_dbg_rec_on(
&self,
_writer: &mut impl Write,
_total_size: usize,
_max_depth: usize,
_prefix: &mut String,
_is_last: bool,
_flags: DbgFlags
) -> Result { ... }
fn _mem_dbg_depth_on(
&self,
writer: &mut impl Write,
total_size: usize,
max_depth: usize,
prefix: &mut String,
field_name: Option<&str>,
is_last: bool,
padded_size: usize,
flags: DbgFlags
) -> Result { ... }
}Expand description
Provided Methods§
fn _mem_dbg_rec_on( &self, _writer: &mut impl Write, _total_size: usize, _max_depth: usize, _prefix: &mut String, _is_last: bool, _flags: DbgFlags ) -> Result
fn _mem_dbg_depth_on( &self, writer: &mut impl Write, total_size: usize, max_depth: usize, prefix: &mut String, field_name: Option<&str>, is_last: bool, padded_size: usize, flags: DbgFlags ) -> Result
Object Safety§
This trait is not object safe.