Struct tauri_utils::config::PluginConfig  
source · pub struct PluginConfig(pub HashMap<String, JsonValue>);Expand description
The plugin configs holds a HashMap mapping a plugin name to its configuration object.
See more: https://tauri.app/v1/api/config#pluginconfig
Tuple Fields§
§0: HashMap<String, JsonValue>Trait Implementations§
source§impl Clone for PluginConfig
 
impl Clone for PluginConfig
source§fn clone(&self) -> PluginConfig
 
fn clone(&self) -> PluginConfig
Returns a copy of the value. Read more
1.0.0 · 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 PluginConfig
 
impl Debug for PluginConfig
source§impl Default for PluginConfig
 
impl Default for PluginConfig
source§fn default() -> PluginConfig
 
fn default() -> PluginConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PluginConfig
 
impl<'de> Deserialize<'de> for PluginConfig
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
source§impl PartialEq<PluginConfig> for PluginConfig
 
impl PartialEq<PluginConfig> for PluginConfig
source§fn eq(&self, other: &PluginConfig) -> bool
 
fn eq(&self, other: &PluginConfig) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.