pub trait Resource: 'static { type Value: ?Sized; // Required method fn as_ptr(&self) -> *const Self::Value; }