pub struct PluginRepository {
pub url: String,
pub branch: String,
pub last_updated: Option<String>,
pub commit_sha: Option<String>,
}Expand description
Plugin repository configuration
Fields§
§url: String§branch: String§last_updated: Option<String>§commit_sha: Option<String>Trait Implementations§
Source§impl Clone for PluginRepository
impl Clone for PluginRepository
Source§fn clone(&self) -> PluginRepository
fn clone(&self) -> PluginRepository
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 PluginRepository
impl Debug for PluginRepository
Source§impl<'de> Deserialize<'de> for PluginRepository
impl<'de> Deserialize<'de> for PluginRepository
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 PluginRepository
impl RefUnwindSafe for PluginRepository
impl Send for PluginRepository
impl Sync for PluginRepository
impl Unpin for PluginRepository
impl UnsafeUnpin for PluginRepository
impl UnwindSafe for PluginRepository
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