pub trait ArcExt {
type Pointee: ?Sized;
// Required method
fn as_ptr_logic(self) -> *const Self::Pointee;
}Expand description
Extension trait for Arc.
Required Associated Types§
Required Methods§
Sourcefn as_ptr_logic(self) -> *const Self::Pointee
fn as_ptr_logic(self) -> *const Self::Pointee
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".