pub struct CompilationCache {
pub schema_hash: String,
pub dylib_path: PathBuf,
pub generated_code: String,
pub metadata: SchemaMetadata,
}Fields§
§schema_hash: String§dylib_path: PathBuf§generated_code: String§metadata: SchemaMetadataTrait Implementations§
Source§impl Clone for CompilationCache
impl Clone for CompilationCache
Source§impl Debug for CompilationCache
impl Debug for CompilationCache
Source§impl<'de> Deserialize<'de> for CompilationCache
impl<'de> Deserialize<'de> for CompilationCache
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 CompilationCache
impl RefUnwindSafe for CompilationCache
impl Send for CompilationCache
impl Sync for CompilationCache
impl Unpin for CompilationCache
impl UnsafeUnpin for CompilationCache
impl UnwindSafe for CompilationCache
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