pub struct LabelledSource<X: AxisKindMarker, Y: AxisKindMarker> {
pub source: Vec<(ValueSerializeWrapper<X>, ValueSerializeWrapper<Y>, String)>,
}
Fields§
§source: Vec<(ValueSerializeWrapper<X>, ValueSerializeWrapper<Y>, String)>
Trait Implementations§
Source§impl<X: Clone + AxisKindMarker, Y: Clone + AxisKindMarker> Clone for LabelledSource<X, Y>
impl<X: Clone + AxisKindMarker, Y: Clone + AxisKindMarker> Clone for LabelledSource<X, Y>
Source§fn clone(&self) -> LabelledSource<X, Y>
fn clone(&self) -> LabelledSource<X, Y>
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<X, Y> Freeze for LabelledSource<X, Y>
impl<X, Y> RefUnwindSafe for LabelledSource<X, Y>where
X: RefUnwindSafe,
Y: RefUnwindSafe,
impl<X, Y> Send for LabelledSource<X, Y>
impl<X, Y> Sync for LabelledSource<X, Y>
impl<X, Y> Unpin for LabelledSource<X, Y>
impl<X, Y> UnwindSafe for LabelledSource<X, Y>where
X: UnwindSafe,
Y: 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