[−][src]Struct gcmodule::ThreadedObjectSpace
A collection of tracked ThreadedCc objects
that can be garbage collected.
ThreadedObjectSpace is similar to
ObjectSpace but works with multi-thread.
Methods
impl ThreadedObjectSpace[src]
pub fn count_tracked(&self) -> usize[src]
Count objects tracked by this
ThreadedObjectSpace.
pub fn collect_cycles(&self) -> usize[src]
Collect cyclic garbage tracked by this
ThreadedObjectSpace.
Return the number of objects collected.
pub fn create<T: Trace>(&self, value: T) -> ThreadedCc<T>[src]
Constructs a new ThreadedCc<T> in this
ThreadedObjectSpace.
The returned object should not refer to
ThreadedCc<T> created by a different
ThreadedObjectSpace.
Otherwise the collector might fail to collect cycles.
Trait Implementations
impl Default for ThreadedObjectSpace[src]
fn default() -> Self[src]
Constructs an empty ThreadedObjectSpace.
impl Send for ThreadedObjectSpace[src]
impl Sync for ThreadedObjectSpace[src]
Auto Trait Implementations
impl !RefUnwindSafe for ThreadedObjectSpace
impl Unpin for ThreadedObjectSpace
impl !UnwindSafe for ThreadedObjectSpace
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,