Struct rquickjs_core::function::Flat
source · pub struct Flat<T>(pub T);
Expand description
A type to flatten tuples into another tuple.
ToArgs is only implemented for tuples with a length of up to 8. If you need more arguments you can use this type to extend arguments with up to 8 additional arguments recursively.
Tuple Fields§
§0: T
Implementations§
source§impl<T> Flat<T>
impl<T> Flat<T>
pub fn into_inner(self) -> T
Trait Implementations§
source§impl<'js, T: FromParams<'js>> FromParam<'js> for Flat<T>
impl<'js, T: FromParams<'js>> FromParam<'js> for Flat<T>
source§fn param_requirement() -> ParamRequirement
fn param_requirement() -> ParamRequirement
The parameters requirements this value requires.
source§fn from_param<'a>(params: &mut ParamsAccessor<'a, 'js>) -> Result<Self>
fn from_param<'a>(params: &mut ParamsAccessor<'a, 'js>) -> Result<Self>
Convert from a parameter value.
Auto Trait Implementations§
impl<T> RefUnwindSafe for Flat<T>where
T: RefUnwindSafe,
impl<T> Send for Flat<T>where
T: Send,
impl<T> Sync for Flat<T>where
T: Sync,
impl<T> Unpin for Flat<T>where
T: Unpin,
impl<T> UnwindSafe for Flat<T>where
T: UnwindSafe,
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