Struct dprint_core::plugins::PluginInfo [−][src]
pub struct PluginInfo { pub name: String, pub version: String, pub config_key: String, pub file_extensions: Vec<String>, pub file_names: Vec<String>, pub help_url: String, pub config_schema_url: String, }
Expand description
Information about a plugin.
Fields
name: String
The name of the plugin.
version: String
The version of the plugin.
config_key: String
Gets the key that can be used in the configuration JSON.
file_extensions: Vec<String>
The file extensions this plugin should format.
file_names: Vec<String>
The file names this plugin should format.
help_url: String
A url the user can go to in order to get help information about the plugin.
config_schema_url: String
Schema url for the plugin configuration.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for PluginInfo
impl Send for PluginInfo
impl Sync for PluginInfo
impl Unpin for PluginInfo
impl UnwindSafe for PluginInfo
Blanket Implementations
Mutably borrows from an owned value. Read more