Struct dotfiles_actions::apt::directive::AptDirective

source ·
pub struct AptDirective<'a> { /* private fields */ }
Expand description

A directive that can build AptActions to install packages

Trait Implementations§

source§

impl<'a> ActionParser<'a> for AptDirective<'a>

source§

fn parse_action_list( &'a self, context_settings: &Settings, yaml: &StrictYaml, current_dir: &Path ) -> Result<Vec<AptAction<'a>>, DotfilesError>

Parse the list of actions from yaml, in this case it’s only one action so this function only wraps AptDirective::parse_action

§

type ActionType = AptAction<'a>

The action type this object parses
source§

fn parse_action( &'a self, context_settings: &Settings, yaml: &StrictYaml, _: &Path ) -> Result<AptAction<'a>, DotfilesError>

Builds a single action of type [ActionParser::ActionType] from StrictYaml tree object that represents the action’s configuration and a default settings object. Read more
source§

impl<'a> Clone for AptDirective<'a>

source§

fn clone(&self) -> AptDirective<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Default for AptDirective<'a>

source§

fn default() -> AptDirective<'a>

Returns the “default value” for a type. Read more
source§

impl<'a> Directive<'a> for AptDirective<'a>

§

fn get_setting_from_yaml_hash_or_from_context( &'a self, name: &str, yaml: &StrictYaml, context_settings: &HashMap<String, Setting> ) -> Result<Setting, DotfilesError>

Parse a particular setting with its correct type from yaml, fall back to context settings or directive defaults if not found in yaml. Returns error if there is any kind of parsing or typing error
§

fn get_setting_from_yaml_hash( &'a self, name: &str, yaml: &StrictYaml ) -> Result<Setting, DotfilesError>

Parses an individual setting named name from a yaml hash using the type stored in DirectiveData.setting_types.
source§

impl<'a> HasDirectiveData<'a> for AptDirective<'a>

source§

fn directive_data(&'a self) -> &'a DirectiveData

Returns the directive data for this object
§

fn name(&'a self) -> &'a str

Returns the name of the directive.
§

fn defaults(&'a self) -> &'a HashMap<String, Setting>

Returns the default settings as configured.

Auto Trait Implementations§

§

impl<'a> Freeze for AptDirective<'a>

§

impl<'a> RefUnwindSafe for AptDirective<'a>

§

impl<'a> Send for AptDirective<'a>

§

impl<'a> Sync for AptDirective<'a>

§

impl<'a> Unpin for AptDirective<'a>

§

impl<'a> UnwindSafe for AptDirective<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V