pub struct PluginInformation {
pub name: String,
pub kind: PluginType,
pub version: usize,
pub publisher: String,
pub description: String,
pub credential_kind: Option<CredentialType>,
pub oauth_url: Option<String>,
}
Fields§
§name: String
§kind: PluginType
§version: usize
§publisher: String
§description: String
§credential_kind: Option<CredentialType>
§oauth_url: Option<String>
Trait Implementations§
source§impl Clone for PluginInformation
impl Clone for PluginInformation
source§fn clone(&self) -> PluginInformation
fn clone(&self) -> PluginInformation
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 PluginInformation
impl Debug for PluginInformation
source§impl Default for PluginInformation
impl Default for PluginInformation
source§fn default() -> PluginInformation
fn default() -> PluginInformation
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PluginInformation
impl<'de> Deserialize<'de> for PluginInformation
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 for PluginInformation
impl PartialEq for PluginInformation
source§fn eq(&self, other: &PluginInformation) -> bool
fn eq(&self, other: &PluginInformation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for PluginInformation
impl Serialize for PluginInformation
impl StructuralPartialEq for PluginInformation
Auto Trait Implementations§
impl Freeze for PluginInformation
impl RefUnwindSafe for PluginInformation
impl Send for PluginInformation
impl Sync for PluginInformation
impl Unpin for PluginInformation
impl UnwindSafe for PluginInformation
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