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

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.

Methods

impl FormalArgs[src]

pub fn new(a: Vec<(String, Value)>, is_varargs: bool) -> Self[src]

pub fn eval<'a>(
    &self,
    scope: &'a dyn Scope,
    args: &CallArgs
) -> Result<ScopeImpl<'a>, Error>
[src]

Trait Implementations

impl Clone for FormalArgs[src]

impl Default for FormalArgs[src]

impl PartialOrd<FormalArgs> for FormalArgs[src]

impl Eq for FormalArgs[src]

impl Ord for FormalArgs[src]

impl PartialEq<FormalArgs> for FormalArgs[src]

impl Debug for FormalArgs[src]

Auto Trait Implementations

Blanket Implementations

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, 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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