pub trait ValueType { }
Expand description
A marker trait to indicate an owned collection type. This is to distinguish them from borrowed types, which is essential to resolve implementation collisions.
Implementations on Foreign Types§
impl<S, T> ValueType for (S, T)
A tuple wraps its containers, so itself is a value type and not a borrow.