pub struct Compiled {
pub format_version: u8,
pub flusso_version: String,
pub config: Config,
}Expand description
A compiled configuration: the validated Config plus the provenance needed
to read it safely.
Fields§
§format_version: u8Artifact format version, checked on load against FORMAT_VERSION.
flusso_version: StringThe flusso version that produced this artifact (informational).
config: ConfigThe fully-validated configuration.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Compiled
impl<'de> Deserialize<'de> for Compiled
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 Compiled
impl RefUnwindSafe for Compiled
impl Send for Compiled
impl Sync for Compiled
impl Unpin for Compiled
impl UnsafeUnpin for Compiled
impl UnwindSafe for Compiled
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