pub trait CxxVectorExt<T: UniquePtrTarget>: Sealed {
// Required methods
fn push_unique(self: Pin<&mut Self>, value: UniquePtr<T>);
fn pop_unique(self: Pin<&mut Self>) -> Option<UniquePtr<T>>;
}pub trait CxxVectorExt<T: UniquePtrTarget>: Sealed {
// Required methods
fn push_unique(self: Pin<&mut Self>, value: UniquePtr<T>);
fn pop_unique(self: Pin<&mut Self>) -> Option<UniquePtr<T>>;
}