Struct rsass::sass::FormalArgs[][src]

pub struct FormalArgs(_, _);

The declared arguments of a mixin or function declaration.

The arguments are ordered (so they have a position). Each argument also has a name and may have a default value.

Implementations

impl FormalArgs[src]

pub fn new(args: Vec<(Name, Option<Value>)>) -> FormalArgs[src]

Create a new FormalArgs.

The given arg-pairs each have a name and an optional default value.

pub fn new_va(args: Vec<(Name, Option<Value>)>) -> FormalArgs[src]

Create a new set of varargs arguments

pub fn none() -> FormalArgs[src]

Create an empty set of arguments.

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

Return true if this formalarg is varargs.

pub fn eval(
    &self,
    scope: ScopeRef,
    args: &CallArgs
) -> Result<ScopeRef, ArgsError>
[src]

Evaluate a set of call arguments for these formal arguments.

Returns a Scope that is a sub-scope to the given scope.

Trait Implementations

impl Clone for FormalArgs[src]

impl Debug for FormalArgs[src]

impl Display for FormalArgs[src]

impl Eq for FormalArgs[src]

impl PartialEq<FormalArgs> for FormalArgs[src]

impl PartialOrd<FormalArgs> for FormalArgs[src]

impl StructuralEq for FormalArgs[src]

impl StructuralPartialEq for FormalArgs[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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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> TryConv for T

impl<T> TryConv for T

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.

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