Debug

Type Alias Debug 

Source
pub type Debug = Bound<__, __, __, __, __, Debug>;
Expand description

Bound for Debug.

§Examples

use dungeon_cell::bound::bounds::Debug;
use dungeon_cell::bound::Dynamic;
use dungeon_cell::marker_traits::IsBound;

fn test<T: Dynamic<B>, B: IsBound>() {}

test::<(), Debug>();
test::<i32, Debug>();
test::<String, Debug>();

Aliased Type§

pub struct Debug { /* private fields */ }