pub struct MetadataCache {
pub functions: Vec<Function>,
pub enums: HashMap<String, Vec<String>>,
pub events: Vec<Event>,
pub version: u32,
}Expand description
Serializable cache format
Fields§
§functions: Vec<Function>§enums: HashMap<String, Vec<String>>§events: Vec<Event>§version: u32Implementations§
Trait Implementations§
Source§impl Debug for MetadataCache
impl Debug for MetadataCache
Source§impl<'de> Deserialize<'de> for MetadataCache
impl<'de> Deserialize<'de> for MetadataCache
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MetadataCache
impl RefUnwindSafe for MetadataCache
impl Send for MetadataCache
impl Sync for MetadataCache
impl Unpin for MetadataCache
impl UnsafeUnpin for MetadataCache
impl UnwindSafe for MetadataCache
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