[][src]Struct dprint_core::plugins::PluginInfo

pub struct PluginInfo {
    pub name: String,
    pub version: String,
    pub config_key: String,
    pub file_extensions: Vec<String>,
    pub help_url: String,
    pub config_schema_url: String,
}

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 supports.

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

impl Clone for PluginInfo[src]

impl Debug for PluginInfo[src]

impl<'de> Deserialize<'de> for PluginInfo[src]

impl PartialEq<PluginInfo> for PluginInfo[src]

impl Serialize for PluginInfo[src]

impl StructuralPartialEq for PluginInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.