pub struct ContributionProviderDetails {
pub display_name: Option<String>,
pub name: Option<String>,
pub properties: Option<Value>,
pub version: Option<String>,
}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 duplicate 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
impl StructuralPartialEq for ContributionProviderDetails
Auto Trait Implementations§
impl Freeze for ContributionProviderDetails
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