FuncWrapper8

Struct FuncWrapper8 

Source
pub struct FuncWrapper8<T: Fn(T0, T1, T2, T3, T4, T5, T6, T7) -> R, T0, T1, T2, T3, T4, T5, T6, T7, R>(/* private fields */);

Trait Implementations§

Source§

impl<T, T0, T1, T2, T3, T4, T5, T6, T7, R> FasCallable for FuncWrapper8<T, T0, T1, T2, T3, T4, T5, T6, T7, R>
where T: Fn(T0, T1, T2, T3, T4, T5, T6, T7) -> R + Clone + Send + Sync + 'static, T0: From<FamlValue> + Send + Sync + 'static, T1: From<FamlValue> + Send + Sync + 'static, T2: From<FamlValue> + Send + Sync + 'static, T3: From<FamlValue> + Send + Sync + 'static, T4: From<FamlValue> + Send + Sync + 'static, T5: From<FamlValue> + Send + Sync + 'static, T6: From<FamlValue> + Send + Sync + 'static, T7: From<FamlValue> + Send + Sync + 'static, R: Into<FamlValue> + Send + Sync + 'static,

Source§

fn call(&self, args: Vec<FamlValue>) -> FamlValue

Source§

fn clone_(&self) -> Box<dyn FasCallable + 'static>

Source§

fn get_arg_count(&self) -> usize

Auto Trait Implementations§

§

impl<T, T0, T1, T2, T3, T4, T5, T6, T7, R> Freeze for FuncWrapper8<T, T0, T1, T2, T3, T4, T5, T6, T7, R>
where T: Freeze,

§

impl<T, T0, T1, T2, T3, T4, T5, T6, T7, R> RefUnwindSafe for FuncWrapper8<T, T0, T1, T2, T3, T4, T5, T6, T7, R>

§

impl<T, T0, T1, T2, T3, T4, T5, T6, T7, R> Send for FuncWrapper8<T, T0, T1, T2, T3, T4, T5, T6, T7, R>
where T: Send, T0: Send, T1: Send, T2: Send, T3: Send, T4: Send, T5: Send, T6: Send, T7: Send, R: Send,

§

impl<T, T0, T1, T2, T3, T4, T5, T6, T7, R> Sync for FuncWrapper8<T, T0, T1, T2, T3, T4, T5, T6, T7, R>
where T: Sync, T0: Sync, T1: Sync, T2: Sync, T3: Sync, T4: Sync, T5: Sync, T6: Sync, T7: Sync, R: Sync,

§

impl<T, T0, T1, T2, T3, T4, T5, T6, T7, R> Unpin for FuncWrapper8<T, T0, T1, T2, T3, T4, T5, T6, T7, R>
where T: Unpin, T0: Unpin, T1: Unpin, T2: Unpin, T3: Unpin, T4: Unpin, T5: Unpin, T6: Unpin, T7: Unpin, R: Unpin,

§

impl<T, T0, T1, T2, T3, T4, T5, T6, T7, R> UnwindSafe for FuncWrapper8<T, T0, T1, T2, T3, T4, T5, T6, T7, R>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.