pub struct Manifest {
pub presentar: String,
pub name: String,
pub version: String,
pub description: String,
pub score: Option<Score>,
pub data: HashMap<String, DataSource>,
pub models: HashMap<String, ModelRef>,
pub layout: LayoutConfig,
pub interactions: Vec<Interaction>,
pub theme: Option<ThemeConfig>,
}Expand description
Application manifest loaded from app.yaml.
Fields§
§presentar: StringPresentar version
name: StringApplication name
version: StringApplication version
description: StringApplication description
score: Option<Score>Quality score (auto-computed)
data: HashMap<String, DataSource>Data sources
models: HashMap<String, ModelRef>Model references
layout: LayoutConfigLayout configuration
interactions: Vec<Interaction>Interactions
theme: Option<ThemeConfig>Theme configuration
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Manifest
impl<'de> Deserialize<'de> for Manifest
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 Manifest
impl RefUnwindSafe for Manifest
impl Send for Manifest
impl Sync for Manifest
impl Unpin for Manifest
impl UnsafeUnpin for Manifest
impl UnwindSafe for Manifest
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