[−][src]Struct census::Inventory
The Inventory register and keeps track of all of the objects alive.
Methods
impl<T> Inventory<T>[src]
pub fn new() -> Inventory<T>[src]
Creates a new inventory object
pub fn list(&self) -> Vec<TrackedObject<T>>[src]
Takes a snapshot of the list of tracked object.
Note that the list is a simple Vec of tracked object.
As a result, it is a consistent snapshot of the
list of living instance at the time of the call,
Obviously, instances may have been created after the call. They will obviously not appear in the snapshot.
let inventory = Inventory::new(); let one = inventory.track("one".to_string()); let living_instances: Vec<TrackedObject<String>> = inventory.list(); let two = inventory.track("two".to_string()); // our snapshot is a bit old. assert_eq!(living_instances.len(), 1); // a fresher snapshot would contain our new element. assert_eq!(inventory.list().len(), 2);
Also, the instance in the snapshot itself are considered "living".
As a result, as long as a snapshot is not dropped, all of its instances will be part of the inventory.
let inventory = Inventory::new(); let one = inventory.track("one".to_string()); let living_instances: Vec<TrackedObject<String>> = inventory.list(); // let's drop one here drop(one); // The instance is technically still in the inventory // as our previous snapshot is extending its life... assert_eq!(inventory.list().len(), 1); // If we drop our previous snapshot however... drop(living_instances); // `one` is really untracked. assert!(inventory.list().is_empty());
pub fn track(&self, t: T) -> TrackedObject<T>[src]
Starts tracking a given T object.
Trait Implementations
impl<T> Clone for Inventory<T>[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<T> Default for Inventory<T>[src]
Auto Trait Implementations
impl<T> Send for Inventory<T> where
T: Send + Sync,
T: Send + Sync,
impl<T> Sync for Inventory<T> where
T: Send + Sync,
T: Send + Sync,
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom 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> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,