Trait FragileTLike

Source
pub trait FragileTLike {
    type Container<T>: FragileMutContainer<T>;
}
Available on crate feature kinds only.
Expand description

A container kind trait based on how a type T acts as a container for itself.

T, however, is not a fragile container; this kind trait loosens that requirement.

Required Associated Types§

Source

type Container<T>: FragileMutContainer<T>

A T-like container type, but permitted to be fragile.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§