pub enum SetterValueSource {
    FromExpression(Rc<Sequence>),
    FromValue(RantValue),
    Consumed,
}
Expand description

Describes where a setter gets its RHS value.

Variants

FromExpression(Rc<Sequence>)

Setter RHS is evaluated from an expression.

FromValue(RantValue)

Setter RHS is a value.

Consumed

Setter RHS was already consumed.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.