pub struct ContributionProviderDetails {
    pub display_name: Option<String>,
    pub name: Option<String>,
    pub properties: Option<Value>,
    pub version: Option<String>,
}Expand description
Fields§
§display_name: Option<String>Friendly name for the provider.
name: Option<String>Unique identifier for this provider. The provider name can be used to cache the contribution data and refer back to it when looking for changes
properties: Option<Value>Properties associated with the provider
version: Option<String>Version of contributions associated with this contribution provider.
Implementations§
Trait Implementations§
source§impl Clone for ContributionProviderDetails
 
impl Clone for ContributionProviderDetails
source§fn clone(&self) -> ContributionProviderDetails
 
fn clone(&self) -> ContributionProviderDetails
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 ContributionProviderDetails
 
impl Debug for ContributionProviderDetails
source§impl Default for ContributionProviderDetails
 
impl Default for ContributionProviderDetails
source§fn default() -> ContributionProviderDetails
 
fn default() -> ContributionProviderDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ContributionProviderDetails
 
impl<'de> Deserialize<'de> for ContributionProviderDetails
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 ContributionProviderDetails
 
impl PartialEq for ContributionProviderDetails
source§fn eq(&self, other: &ContributionProviderDetails) -> bool
 
fn eq(&self, other: &ContributionProviderDetails) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ContributionProviderDetails
Auto Trait Implementations§
impl RefUnwindSafe for ContributionProviderDetails
impl Send for ContributionProviderDetails
impl Sync for ContributionProviderDetails
impl Unpin for ContributionProviderDetails
impl UnwindSafe for ContributionProviderDetails
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