pub trait AsRaw { type Raw: Unpin + 'static; // Required method unsafe fn as_raw(&self) -> Self::Raw; }
资源的原始形式的表示。通常来自底层库的定义。
原始形式的类型。
The caller must ensure that the returned item is dropped before the original item.