pub trait WeakRcb<T> {
type Strong: Rcb<T>;
// Required method
fn upgrade(&self) -> Option<Self::Strong>;
}Expand description
Trait for weak pointers to reference-counted boxes.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".