Struct stepflow_base::ObjectStore[][src]

pub struct ObjectStore<T, TID> where
    TID: Eq + Hash
{ /* fields omitted */ }

Implementations

impl<T, TID> ObjectStore<T, TID> where
    T: ObjectStoreContent + ObjectStoreContent<IdType = TID>,
    TID: Eq + Hash + Clone
[src]

pub fn new() -> Self[src]

pub fn with_capacity(capacity: usize) -> Self[src]

pub fn reserve_id(&mut self) -> TID[src]

pub fn insert_new<CB>(
    &mut self,
    name: Option<String>,
    cb: CB
) -> Result<TID, IdError<TID>> where
    CB: FnOnce(TID) -> Result<T, IdError<TID>>, 
[src]

pub fn register(
    &mut self,
    name: Option<String>,
    object: T
) -> Result<TID, IdError<TID>>
[src]

pub fn id_from_name(&self, name: &str) -> Option<&TID>[src]

pub fn name_from_id(&self, id: &TID) -> Option<&String>[src]

pub fn get_by_name(&self, name: &str) -> Option<&T>[src]

pub fn get(&self, id: &TID) -> Option<&T>[src]

pub fn get_mut(&mut self, id: &TID) -> Option<&mut T>[src]

pub fn iter_names(&self) -> impl Iterator<Item = (&String, &TID)>[src]

Trait Implementations

impl<T: Debug, TID: Debug> Debug for ObjectStore<T, TID> where
    TID: Eq + Hash
[src]

Auto Trait Implementations

impl<T, TID> RefUnwindSafe for ObjectStore<T, TID> where
    T: RefUnwindSafe,
    TID: RefUnwindSafe
[src]

impl<T, TID> Send for ObjectStore<T, TID> where
    T: Send,
    TID: Send
[src]

impl<T, TID> Sync for ObjectStore<T, TID> where
    T: Sync,
    TID: Sync
[src]

impl<T, TID> Unpin for ObjectStore<T, TID> where
    T: Unpin,
    TID: Unpin
[src]

impl<T, TID> UnwindSafe for ObjectStore<T, TID> where
    T: UnwindSafe,
    TID: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsAny for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.