pub enum OperatorFunction {
Arg0(fn() -> Dynamic),
Arg1(fn(_: ImmutableString) -> Dynamic),
Arg2(fn(_: ImmutableString, _: ImmutableString) -> Dynamic),
Arg3(fn(_: ImmutableString, _: ImmutableString, _: ImmutableString) -> Dynamic),
Arg4(fn(_: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString) -> Dynamic),
Arg5(fn(_: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString) -> Dynamic),
Arg6(fn(_: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString) -> Dynamic),
}
Variants§
Arg0(fn() -> Dynamic)
Arg1(fn(_: ImmutableString) -> Dynamic)
Arg2(fn(_: ImmutableString, _: ImmutableString) -> Dynamic)
Arg3(fn(_: ImmutableString, _: ImmutableString, _: ImmutableString) -> Dynamic)
Arg4(fn(_: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString) -> Dynamic)
Arg5(fn(_: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString) -> Dynamic)
Arg6(fn(_: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString, _: ImmutableString) -> Dynamic)
Trait Implementations§
Source§impl Clone for OperatorFunction
impl Clone for OperatorFunction
Source§fn clone(&self) -> OperatorFunction
fn clone(&self) -> OperatorFunction
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for OperatorFunction
Auto Trait Implementations§
impl Freeze for OperatorFunction
impl RefUnwindSafe for OperatorFunction
impl Send for OperatorFunction
impl Sync for OperatorFunction
impl Unpin for OperatorFunction
impl UnwindSafe for OperatorFunction
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