pub struct Manifest {
pub plugin: PluginSection,
pub confium: ConfiumSection,
pub dependencies: BTreeMap<String, String>,
pub interfaces: BTreeMap<String, u8>,
pub algorithms: BTreeMap<String, Vec<String>>,
pub artifact: ArtifactSection,
}Expand description
Top-level manifest model. Field order follows the example manifest so
toml::to_string_pretty emits sections in the conventional order.
Fields§
§plugin: PluginSection§confium: ConfiumSection§dependencies: BTreeMap<String, String>§interfaces: BTreeMap<String, u8>§algorithms: BTreeMap<String, Vec<String>>§artifact: ArtifactSectionTrait Implementations§
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