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