pub struct PluginManifest {Show 15 fields
pub id: String,
pub name: String,
pub version: String,
pub description: String,
pub author: String,
pub min_mangofetch_version: Option<String>,
pub license: Option<String>,
pub homepage: Option<String>,
pub icon: Option<String>,
pub nav: Vec<PluginNavItem>,
pub events: PluginEvents,
pub capabilities: Vec<String>,
pub settings_schema: Option<Value>,
pub rust_crate: Option<String>,
pub frontend_dir: Option<String>,
}Fields§
§id: String§name: String§version: String§description: String§min_mangofetch_version: Option<String>§license: Option<String>§homepage: Option<String>§icon: Option<String>§events: PluginEvents§capabilities: Vec<String>§settings_schema: Option<Value>§rust_crate: Option<String>§frontend_dir: Option<String>Trait Implementations§
Source§impl Clone for PluginManifest
impl Clone for PluginManifest
Source§fn clone(&self) -> PluginManifest
fn clone(&self) -> PluginManifest
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 PluginManifest
impl Debug for PluginManifest
Source§impl<'de> Deserialize<'de> for PluginManifest
impl<'de> Deserialize<'de> for PluginManifest
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 PluginManifest
impl RefUnwindSafe for PluginManifest
impl Send for PluginManifest
impl Sync for PluginManifest
impl Unpin for PluginManifest
impl UnsafeUnpin for PluginManifest
impl UnwindSafe for PluginManifest
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