Struct Params

Source
pub struct Params(pub Vec<Dypes>);

Tuple Fields§

§0: Vec<Dypes>

Implementations§

Source§

impl Params

Source

pub fn new(val: Vec<Dypes>) -> Self

Source

pub fn values(self) -> Vec<Dypes>

Trait Implementations§

Source§

impl From<()> for Params

Source§

fn from(_: ()) -> Self

Converts to this type from the input type.
Source§

impl<A> From<(A,)> for Params
where Dypes: From<A>,

Source§

fn from(x: (A,)) -> Params

Converts to this type from the input type.
Source§

impl<A, B> From<(A, B)> for Params
where Dypes: From<A> + From<B>,

Source§

fn from(x: (A, B)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C> From<(A, B, C)> for Params
where Dypes: From<A> + From<B> + From<C>,

Source§

fn from(x: (A, B, C)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D> From<(A, B, C, D)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D>,

Source§

fn from(x: (A, B, C, D)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D, E> From<(A, B, C, D, E)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D> + From<E>,

Source§

fn from(x: (A, B, C, D, E)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D, E, F> From<(A, B, C, D, E, F)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D> + From<E> + From<F>,

Source§

fn from(x: (A, B, C, D, E, F)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D, E, F, G> From<(A, B, C, D, E, F, G)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D> + From<E> + From<F> + From<G>,

Source§

fn from(x: (A, B, C, D, E, F, G)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D, E, F, G, H> From<(A, B, C, D, E, F, G, H)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D> + From<E> + From<F> + From<G> + From<H>,

Source§

fn from(x: (A, B, C, D, E, F, G, H)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D, E, F, G, H, I> From<(A, B, C, D, E, F, G, H, I)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D> + From<E> + From<F> + From<G> + From<H> + From<I>,

Source§

fn from(x: (A, B, C, D, E, F, G, H, I)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D, E, F, G, H, I, J> From<(A, B, C, D, E, F, G, H, I, J)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D> + From<E> + From<F> + From<G> + From<H> + From<I> + From<J>,

Source§

fn from(x: (A, B, C, D, E, F, G, H, I, J)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D, E, F, G, H, I, J, K> From<(A, B, C, D, E, F, G, H, I, J, K)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D> + From<E> + From<F> + From<G> + From<H> + From<I> + From<J> + From<K>,

Source§

fn from(x: (A, B, C, D, E, F, G, H, I, J, K)) -> Params

Converts to this type from the input type.
Source§

impl<A, B, C, D, E, F, G, H, I, J, K, L> From<(A, B, C, D, E, F, G, H, I, J, K, L)> for Params
where Dypes: From<A> + From<B> + From<C> + From<D> + From<E> + From<F> + From<G> + From<H> + From<I> + From<J> + From<K> + From<L>,

Source§

fn from(x: (A, B, C, D, E, F, G, H, I, J, K, L)) -> Params

Converts to this type from the input type.
Source§

impl From<Params> for Params

Source§

fn from(x: Params) -> Params

Converts to this type from the input type.
Source§

impl<T> From<T> for Params
where Dypes: From<T>,

Source§

fn from(x: T) -> Self

Converts to this type from the input type.
Source§

impl<T> From<Vec<T>> for Params
where Dypes: From<T>,

Source§

fn from(x: Vec<T>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl Freeze for Params

§

impl RefUnwindSafe for Params

§

impl Send for Params

§

impl Sync for Params

§

impl Unpin for Params

§

impl UnwindSafe for Params

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> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V