pub enum ValueLabelAssignments {
Starts(Vec<ValueLabelStart>),
Alias {
from: RelSourceLoc,
value: Value,
},
}
Expand description
Value label assignments: label starts or value aliases.
Variants§
Starts(Vec<ValueLabelStart>)
Original value labels assigned at transform.
Alias
A value alias to original value.
Trait Implementations§
Source§impl Clone for ValueLabelAssignments
impl Clone for ValueLabelAssignments
Source§fn clone(&self) -> ValueLabelAssignments
fn clone(&self) -> ValueLabelAssignments
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 moreSource§impl Debug for ValueLabelAssignments
impl Debug for ValueLabelAssignments
Source§impl Hash for ValueLabelAssignments
impl Hash for ValueLabelAssignments
Source§impl PartialEq for ValueLabelAssignments
impl PartialEq for ValueLabelAssignments
impl StructuralPartialEq for ValueLabelAssignments
Auto Trait Implementations§
impl Freeze for ValueLabelAssignments
impl RefUnwindSafe for ValueLabelAssignments
impl Send for ValueLabelAssignments
impl Sync for ValueLabelAssignments
impl Unpin for ValueLabelAssignments
impl UnwindSafe for ValueLabelAssignments
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