pub struct MetaFileJson {
pub importables: HashMap<String, ImportableInfoJson, RandomState>,
}
Fields§
§importables: HashMap<String, ImportableInfoJson, RandomState>
Implementations§
Source§impl MetaFileJson
impl MetaFileJson
pub fn load_from_string(json: &str) -> MetaFile
pub fn store_to_string(meta_file: &MetaFile) -> String
Trait Implementations§
Source§impl Debug for MetaFileJson
impl Debug for MetaFileJson
Source§impl<'de> Deserialize<'de> for MetaFileJson
impl<'de> Deserialize<'de> for MetaFileJson
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MetaFileJson, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MetaFileJson, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for MetaFileJson
impl Serialize for MetaFileJson
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for MetaFileJson
impl RefUnwindSafe for MetaFileJson
impl Send for MetaFileJson
impl Sync for MetaFileJson
impl Unpin for MetaFileJson
impl UnwindSafe for MetaFileJson
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more