pub trait QBToAttachableRef: QBToRef {
// Provided method
fn to_attach_ref(&self) -> Result<AttachableRef, QBTypeError> { ... }
}Expand description
Trait for entities that can be converted to a reference for an attachment.
Provided Methods§
fn to_attach_ref(&self) -> Result<AttachableRef, QBTypeError>
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.