[][src]Struct hm::config::ManagedObject

pub struct ManagedObject {
    pub name: String,
    pub source: String,
    pub file: String,
    pub destination: String,
    pub method: String,
    pub task: String,
    pub solution: String,
    pub dependencies: Vec<String>,
    pub satisfied: bool,
}

We're a super-set of all the kinds of ManagedObjects we can be. Just don't use the fields you don't wanna use. A simple ManagedObject is a name, source, destination, and method (currently only symlink). The simple ManagedObject would just be symlinked to its destination. Complex ManagedObjects include solutions, which are executed scripts.

Fields

name: Stringsource: Stringfile: Stringdestination: Stringmethod: Stringtask: Stringsolution: Stringdependencies: Vec<String>satisfied: bool

Implementations

impl ManagedObject[src]

pub fn is_task(&self) -> bool[src]

quite simply, if we're a task, we'll have a solution.

pub fn set_satisfied(&mut self)[src]

Trait Implementations

impl Clone for ManagedObject[src]

impl Debug for ManagedObject[src]

impl Default for ManagedObject[src]

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

impl Display for ManagedObject[src]

impl Serialize for ManagedObject[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.