[][src]Struct inventory_mgt::MasterCache

pub struct MasterCache {
    pub products: IndexMap<String, Vec<MasterPart>>,
}

MasterCache & Methods Holds the master inventory in a hashmap, where the key is the ven_code, and the value is a MasterPart struct. This is for efficiency when searching through the master cache.

Fields

products: IndexMap<String, Vec<MasterPart>>

Methods

impl MasterCache[src]

pub fn from(filename: &str) -> Result<MasterCache, Box<dyn Error>>[src]

Takes in a filename for a MasterInventory csv file, and on success, returns a MasterCache struct instance.

pub fn write_csv(&self, filename: &'static str) -> Result<(), Box<dyn Error>>[src]

Writes a new csv file from a MasterCache instance

Auto Trait Implementations

impl Send for MasterCache

impl Sync for MasterCache

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.