pub struct LanguageProviderDeclaration {
pub language: String,
pub artifact: String,
}Expand description
Manifest declaration for a language provider sharing the plugin artifact boundary.
Fields§
§language: StringStable language identifier, for example rust.
artifact: StringExported provider module path relative to the package root.
Trait Implementations§
Source§impl Clone for LanguageProviderDeclaration
impl Clone for LanguageProviderDeclaration
Source§fn clone(&self) -> LanguageProviderDeclaration
fn clone(&self) -> LanguageProviderDeclaration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LanguageProviderDeclaration
impl Debug for LanguageProviderDeclaration
Source§impl<'de> Deserialize<'de> for LanguageProviderDeclaration
impl<'de> Deserialize<'de> for LanguageProviderDeclaration
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
Auto Trait Implementations§
impl Freeze for LanguageProviderDeclaration
impl RefUnwindSafe for LanguageProviderDeclaration
impl Send for LanguageProviderDeclaration
impl Sync for LanguageProviderDeclaration
impl Unpin for LanguageProviderDeclaration
impl UnsafeUnpin for LanguageProviderDeclaration
impl UnwindSafe for LanguageProviderDeclaration
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