pub struct ProjectSchemaEntry {
pub project: String,
pub kind: SchemaKind,
pub path: PathBuf,
}Expand description
JSON Schema registry for per-tenant payload validation.
One [[schema]] entry as parsed from tokens.toml.
path is always resolved relative to the tokens config file’s parent
directory by the caller before being passed to SchemaRegistry::load.
Fields§
§project: StringProject identifier; must match an existing [[token]].project value.
kind: SchemaKindThe payload kind this schema governs.
path: PathBufAbsolute (already-resolved) path to the JSON Schema document on disk.
Trait Implementations§
Source§impl Clone for ProjectSchemaEntry
impl Clone for ProjectSchemaEntry
Source§fn clone(&self) -> ProjectSchemaEntry
fn clone(&self) -> ProjectSchemaEntry
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 moreAuto Trait Implementations§
impl Freeze for ProjectSchemaEntry
impl RefUnwindSafe for ProjectSchemaEntry
impl Send for ProjectSchemaEntry
impl Sync for ProjectSchemaEntry
impl Unpin for ProjectSchemaEntry
impl UnsafeUnpin for ProjectSchemaEntry
impl UnwindSafe for ProjectSchemaEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request