Struct sauce::saucefile::Saucefile[][src]

pub struct Saucefile {
    pub path: PathBuf,
    pub ancestors: Vec<Document>,
    pub document: Document,
}

Fields

path: PathBufancestors: Vec<Document>document: Document

Implementations

impl Saucefile[src]

pub fn read(context: &mut Context<'_>) -> Self[src]

pub fn settings(&self) -> Settings[src]

pub fn set_var(&mut self, name: &str, raw_value: &str)[src]

pub fn set_alias(&mut self, name: &str, raw_value: &str)[src]

pub fn set_function(&mut self, name: &str, body: &str)[src]

pub fn write(&mut self, context: &mut Context<'_>)[src]

pub fn vars(&mut self, options: &Options<'_>) -> Vec<(&str, String)>[src]

pub fn aliases(&mut self, options: &Options<'_>) -> Vec<(&str, String)>[src]

pub fn functions(&mut self, options: &Options<'_>) -> Vec<(&str, String)>[src]

Trait Implementations

impl Debug for Saucefile[src]

impl Default for Saucefile[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> 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.