Struct libkelp::lib::structs::config::KelpDotConfig[][src]

pub struct KelpDotConfig {
    pub homefiles: Option<Vec<FileInfo>>,
    pub rootfiles: Option<Vec<FileInfo>>,
    pub postsave: Option<Vec<Script>>,
    pub prerun: Option<Vec<Script>>,
    pub postrun: Option<Vec<Script>>,
    pub packages: Option<Packages>,
}

This is the new Configuration struct

Fields

homefiles: Option<Vec<FileInfo>>

Files stored in $HOME/*

rootfiles: Option<Vec<FileInfo>>

Files relative to /

postsave: Option<Vec<Script>>

Scripts to run AFTER saving the dotfiles

prerun: Option<Vec<Script>>

Scripts to run BEFORE installing the dotfiles. Path relative to $DOTFILES_ROOT

postrun: Option<Vec<Script>>

Scripts to run After installing the dotfiles Path relative to $DOTFILES_ROOT

packages: Option<Packages>

Packages to install

Trait Implementations

impl Debug for KelpDotConfig[src]

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

impl PartialEq<KelpDotConfig> for KelpDotConfig[src]

impl Serialize for KelpDotConfig[src]

impl StructuralPartialEq for KelpDotConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.