pub struct DiscoveredSchema {
pub path: PathBuf,
pub type_path: String,
pub schema: Schema,
}Expand description
A discovered schema with its metadata.
Fields§
§path: PathBufPath to the schema file
type_path: StringDerived type path (e.g., “my_crate::Config”)
schema: SchemaParsed schema
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiscoveredSchema
impl RefUnwindSafe for DiscoveredSchema
impl Send for DiscoveredSchema
impl Sync for DiscoveredSchema
impl Unpin for DiscoveredSchema
impl UnwindSafe for DiscoveredSchema
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