Trait swipl::blob::WrappedArcBlobBase
source · pub trait WrappedArcBlobBase {
type Inner: Send + Sync + Unpin;
// Required methods
fn blob_name() -> &'static str;
fn get_arc(&self) -> &Arc<Self::Inner>;
fn from_arc(a: Arc<Self::Inner>) -> Self;
}
Expand description
Base type for WrappedArcBlob.
This allows blob_name
to be available to implementors of
WrappedArcBlobImpl, which is convenient for allowing
auto-generation of the write function.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.