[][src]Struct codealong::RepoConfig

pub struct RepoConfig {
    pub config: Config,
    pub repo: RepoInfo,
}

Fields

config: Configrepo: RepoInfo

Methods

impl RepoConfig[src]

pub const DEFAULT_PATH: &'static str[src]

pub fn exists(dir: &Path) -> bool[src]

pub fn from_path(path: &Path) -> Result<Self, Error>[src]

pub fn from_file(file: &File) -> Result<Self, Error>[src]

pub fn from_dir(path: &Path) -> Result<Self, Error>[src]

Attempts to read the config from the conventional location within the directory at .codealong/config.yml. If no config is found, fallback to the base config.

If the config has no name, then default to the name of the directory.

pub fn from_repository(repo: &Repository) -> Result<Self, Error>[src]

pub fn merge(&mut self, other: RepoConfig)[src]

Trait Implementations

impl Default for RepoConfig[src]

impl Clone for RepoConfig[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<RepoConfig> for RepoConfig[src]

impl Debug for RepoConfig[src]

impl Serialize for RepoConfig[src]

impl<'de> Deserialize<'de> for RepoConfig[src]

Auto Trait Implementations

impl Send for RepoConfig

impl Sync for RepoConfig

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]