pub enum ActualParameters<N: Node> {
Named(Vec<(QualifiedName, Transform<N>)>),
Positional(Vec<Transform<N>>),
}
Variants§
Trait Implementations§
Source§impl<N: Clone + Node> Clone for ActualParameters<N>
impl<N: Clone + Node> Clone for ActualParameters<N>
Source§fn clone(&self) -> ActualParameters<N>
fn clone(&self) -> ActualParameters<N>
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 moreAuto Trait Implementations§
impl<N> Freeze for ActualParameters<N>
impl<N> RefUnwindSafe for ActualParameters<N>where
N: RefUnwindSafe,
impl<N> !Send for ActualParameters<N>
impl<N> !Sync for ActualParameters<N>
impl<N> Unpin for ActualParameters<N>where
N: Unpin,
impl<N> UnwindSafe for ActualParameters<N>where
N: 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