pub struct LinkedJsonSchemaInput {
pub root_uri: String,
pub resources: Vec<JsonSchemaResourceInput>,
}Expand description
Complete immutable input graph for one linked frontmatter JSON Schema.
Every attempted local resource reachable from root_uri must be present,
including failed reads. Missing, unreadable, or remote resources are
reported as invalid-frontmatter-schema rather than being retrieved by
core.
Fields§
§root_uri: StringURI of the resource named by frontmatter.schema.
resources: Vec<JsonSchemaResourceInput>Root and transitive resource documents, keyed by each entry’s uri.
Trait Implementations§
Source§impl Clone for LinkedJsonSchemaInput
impl Clone for LinkedJsonSchemaInput
Source§fn clone(&self) -> LinkedJsonSchemaInput
fn clone(&self) -> LinkedJsonSchemaInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinkedJsonSchemaInput
impl Debug for LinkedJsonSchemaInput
impl Eq for LinkedJsonSchemaInput
Source§impl PartialEq for LinkedJsonSchemaInput
impl PartialEq for LinkedJsonSchemaInput
impl StructuralPartialEq for LinkedJsonSchemaInput
Auto Trait Implementations§
impl Freeze for LinkedJsonSchemaInput
impl RefUnwindSafe for LinkedJsonSchemaInput
impl Send for LinkedJsonSchemaInput
impl Sync for LinkedJsonSchemaInput
impl Unpin for LinkedJsonSchemaInput
impl UnsafeUnpin for LinkedJsonSchemaInput
impl UnwindSafe for LinkedJsonSchemaInput
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.