Trait LoadContents

Source
pub trait LoadContents:
    Send
    + Sync
    + 'static { }
Expand description

Marker trait saying that data can be loaded from file.

Implementors§

Source§

impl<T> LoadContents for T
where T: Send + Sync + 'static,