pub struct EngineMetadata {
pub engine_version: String,
pub language_version: Option<LanguageVersion>,
pub theme_catalog_version: String,
pub theme_catalog_revision: String,
}Expand description
Version metadata attached to every operation output.
Fields§
§engine_version: StringSemantic version of stack-engine.
language_version: Option<LanguageVersion>Authored language version, absent when decoding or syntax parsing fails.
theme_catalog_version: StringSemantic version of the selected theme catalog.
theme_catalog_revision: StringContent revision of the selected theme catalog and icon bytes.
Trait Implementations§
Source§impl Clone for EngineMetadata
impl Clone for EngineMetadata
Source§fn clone(&self) -> EngineMetadata
fn clone(&self) -> EngineMetadata
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 EngineMetadata
impl Debug for EngineMetadata
impl Eq for EngineMetadata
Source§impl PartialEq for EngineMetadata
impl PartialEq for EngineMetadata
impl StructuralPartialEq for EngineMetadata
Auto Trait Implementations§
impl Freeze for EngineMetadata
impl RefUnwindSafe for EngineMetadata
impl Send for EngineMetadata
impl Sync for EngineMetadata
impl Unpin for EngineMetadata
impl UnsafeUnpin for EngineMetadata
impl UnwindSafe for EngineMetadata
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