pub struct InstalledPluginSourceGitHub {
pub path: Option<String>,
pub ref: Option<String>,
pub repo: String,
pub source: InstalledPluginSourceGitHubSource,
}Expand description
Schema for the InstalledPluginSourceGitHub type.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§path: Option<String>§ref: Option<String>§repo: String§source: InstalledPluginSourceGitHubSourceConstant value. Always “github”.
Trait Implementations§
Source§impl Clone for InstalledPluginSourceGitHub
impl Clone for InstalledPluginSourceGitHub
Source§fn clone(&self) -> InstalledPluginSourceGitHub
fn clone(&self) -> InstalledPluginSourceGitHub
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 InstalledPluginSourceGitHub
impl Debug for InstalledPluginSourceGitHub
Source§impl Default for InstalledPluginSourceGitHub
impl Default for InstalledPluginSourceGitHub
Source§fn default() -> InstalledPluginSourceGitHub
fn default() -> InstalledPluginSourceGitHub
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstalledPluginSourceGitHub
impl<'de> Deserialize<'de> for InstalledPluginSourceGitHub
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 InstalledPluginSourceGitHub
impl RefUnwindSafe for InstalledPluginSourceGitHub
impl Send for InstalledPluginSourceGitHub
impl Sync for InstalledPluginSourceGitHub
impl Unpin for InstalledPluginSourceGitHub
impl UnsafeUnpin for InstalledPluginSourceGitHub
impl UnwindSafe for InstalledPluginSourceGitHub
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