Trait refuse::NoMapping

source ·
pub trait NoMapping: Send + Sync + 'static { }
Expand description

A type that implements MapAs with an empty implementation.

Implementations on Foreign Types§

source§

impl<K> NoMapping for BTreeSet<K>
where K: Send + Sync + 'static,

source§

impl<K> NoMapping for Set<K>
where K: Sort + Send + Sync + 'static,

source§

impl<K, S> NoMapping for HashSet<K, S>
where K: Send + Sync + 'static, S: Send + Sync + 'static,

source§

impl<K, V> NoMapping for BTreeMap<K, V>
where K: Send + Sync + 'static, V: Send + Sync + 'static,

source§

impl<K, V> NoMapping for Map<K, V>
where K: Sort + Send + Sync + 'static, V: Send + Sync + 'static,

source§

impl<K, V, S> NoMapping for HashMap<K, V, S>
where K: Send + Sync + 'static, V: Send + Sync + 'static, S: Send + Sync + 'static,

source§

impl<T> NoMapping for BinaryHeap<T>
where T: Send + Sync + 'static,

source§

impl<T> NoMapping for LinkedList<T>
where T: Send + Sync + 'static,

source§

impl<T> NoMapping for VecDeque<T>
where T: Send + Sync + 'static,

source§

impl<T> NoMapping for Vec<T>
where T: Send + Sync + 'static,

source§

impl<T, const N: usize> NoMapping for [T; N]
where T: Send + Sync + 'static,

Implementors§

source§

impl<T> NoMapping for T
where T: SimpleType,