pub struct RepositoryConfig {
pub key: String,
pub path: String,
pub github_path: String,
pub deployment_scheme_by_key: HashMap<String, DeploymentSchemeConfig>,
}Fields
key: Stringpath: Stringgithub_path: Stringdeployment_scheme_by_key: HashMap<String, DeploymentSchemeConfig>Trait Implementations
sourceimpl Clone for RepositoryConfig
impl Clone for RepositoryConfig
sourcefn clone(&self) -> RepositoryConfig
fn clone(&self) -> RepositoryConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for RepositoryConfig
impl Debug for RepositoryConfig
sourceimpl<'de> Deserialize<'de> for RepositoryConfig
impl<'de> Deserialize<'de> for RepositoryConfig
sourcefn 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
sourceimpl Serialize for RepositoryConfig
impl Serialize for RepositoryConfig
Auto Trait Implementations
impl RefUnwindSafe for RepositoryConfig
impl Send for RepositoryConfig
impl Sync for RepositoryConfig
impl Unpin for RepositoryConfig
impl UnwindSafe for RepositoryConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more