pub struct RuleMetadata {
pub source_language: Option<String>,
pub source_hash: Option<[u8; 32]>,
pub compiled_at: Option<SystemTime>,
pub compiler_version: Option<String>,
pub author: Option<String>,
}Expand description
Opaque metadata attached to a compiled rule.
All fields are optional and none of them influence the swap state machine. They exist solely for audit trails, observability, and attribution. Callers are free to ignore them or fill them in as they see fit; RingKernel passes them through unchanged.
Fields§
§source_language: Option<String>Human-readable description of the source language, e.g.
"OWL 2 RL", "SHACL", "custom DSL". Opaque to RingKernel.
source_hash: Option<[u8; 32]>SHA-256 of the rule source text, for audit reproducibility.
compiled_at: Option<SystemTime>When the rule was compiled.
compiler_version: Option<String>Version string of the compiler that produced this artifact.
Principal who authored / compiled the rule.
Trait Implementations§
Source§impl Clone for RuleMetadata
impl Clone for RuleMetadata
Source§fn clone(&self) -> RuleMetadata
fn clone(&self) -> RuleMetadata
Returns a duplicate of the value. Read more
1.0.0 · 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 RuleMetadata
impl Debug for RuleMetadata
Source§impl Default for RuleMetadata
impl Default for RuleMetadata
Source§fn default() -> RuleMetadata
fn default() -> RuleMetadata
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RuleMetadata
impl RefUnwindSafe for RuleMetadata
impl Send for RuleMetadata
impl Sync for RuleMetadata
impl Unpin for RuleMetadata
impl UnsafeUnpin for RuleMetadata
impl UnwindSafe for RuleMetadata
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
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> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.