[][src]Struct lib::FileResource

pub struct FileResource<T: FromStr + Clone> { /* fields omitted */ }

A resource which mirrors a flat file. holding an internal cache of it's contents and reloading them on demand if they have changed. calling Resource::load on a fileresouce returns a view into the contents of the file at the time load() was called

Methods

impl<T> FileResource<T> where
    T: FromStr + Clone + UniqueID,
    T::Err: ThreadSafeErr
[src]

pub fn new(path: impl AsRef<Path>) -> Result<Self>[src]

create a new FileResource, building the cache eagerly.

Trait Implementations

impl<T> Resource<T> for FileResource<T> where
    T: FromStr + Clone + UniqueID + Sync + Send,
    T::Err: ThreadSafeErr
[src]

fn load(&self) -> Result<Arc<HashMap<u64, T>>>[src]

load the resource. this will return a cache of the file at the time it was loaded

impl<T, '_> Resource<T> for &'_ FileResource<T> where
    T: FromStr + Clone + UniqueID + Sync + Send,
    T::Err: ThreadSafeErr
[src]

fn load(&self) -> Result<Arc<HashMap<u64, T>>>[src]

load the resource. this will return a cache of the file at the time it was loaded

impl<T: Debug + FromStr + Clone> Debug for FileResource<T>[src]

Auto Trait Implementations

impl<T> Send for FileResource<T> where
    T: Send + Sync

impl<T> Sync for FileResource<T> where
    T: Send + Sync

Blanket Implementations

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> IntoCollection<T> for T

impl<T, I> AsResult<T, I> for T where
    I: Input,