pub struct ArgumentValueListRaw(/* private fields */);Expand description
Alternative evaluation type.
Used to prevent the evaluation of QualifiedName.
assert_valid() and assert_invalid() need these untouched.
Trait Implementations§
Source§impl Eval<ArgumentValueListRaw> for ArgumentList
impl Eval<ArgumentValueListRaw> for ArgumentList
Source§fn eval(&self, context: &mut EvalContext) -> EvalResult<ArgumentValueListRaw>
fn eval(&self, context: &mut EvalContext) -> EvalResult<ArgumentValueListRaw>
Evaluate into a ArgumentValueList.
Source§impl From<ArgumentValueListRaw> for ArgumentValueList
impl From<ArgumentValueListRaw> for ArgumentValueList
Source§fn from(value: ArgumentValueListRaw) -> Self
fn from(value: ArgumentValueListRaw) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ArgumentValueListRaw
impl !RefUnwindSafe for ArgumentValueListRaw
impl !Send for ArgumentValueListRaw
impl !Sync for ArgumentValueListRaw
impl Unpin for ArgumentValueListRaw
impl !UnwindSafe for ArgumentValueListRaw
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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