[−][src]Trait alloc_compose::Owns
Trait to determine if a given memory block is owned by an allocator.
Required methods
Loading content...Implementations on Foreign Types
impl<A: ?Sized> Owns for Box<A> where
A: Owns, [src]
A: Owns,
This is supported on crate feature
alloc only.impl<A: ?Sized> Owns for Rc<A> where
A: Owns, [src]
A: Owns,
This is supported on crate feature
alloc only.impl<A: ?Sized> Owns for Arc<A> where
A: Owns, [src]
A: Owns,
This is supported on crate feature
alloc only.Implementors
impl Owns for RawIntrusiveRegion[src]
impl Owns for RawRegion[src]
impl Owns for RawSharedRegion[src]
impl Owns for Null[src]
impl<'_> Owns for IntrusiveRegion<'_>[src]
impl<'_> Owns for Region<'_>[src]
impl<'_> Owns for SharedRegion<'_>[src]
impl<A: Owns, C: CallbackRef> Owns for Proxy<A, C>[src]
impl<A: Owns, const SIZE: usize> Owns for Chunk<A, SIZE> where
Self: SizeIsPowerOfTwo, [src]
Self: SizeIsPowerOfTwo,
impl<A: ?Sized, '_> Owns for &'_ A where
A: Owns, [src]
A: Owns,
impl<Primary, Secondary> Owns for Fallback<Primary, Secondary> where
Primary: Owns,
Secondary: Owns, [src]
Primary: Owns,
Secondary: Owns,