pub enum TransformationRef {
FunctionallyDefinedTransformation(FunctionallyDefinedTransformationId),
ItemDefinedTransformation(ItemDefinedTransformationId),
ListItemDefinedTransformation(Vec<ItemDefinedTransformationRef>),
SetItemDefinedTransformation(Vec<ItemDefinedTransformationRef>),
Complex(ComplexUnitId),
}Variants§
FunctionallyDefinedTransformation(FunctionallyDefinedTransformationId)
ItemDefinedTransformation(ItemDefinedTransformationId)
ListItemDefinedTransformation(Vec<ItemDefinedTransformationRef>)
SetItemDefinedTransformation(Vec<ItemDefinedTransformationRef>)
Complex(ComplexUnitId)
Implementations§
Trait Implementations§
Source§impl Clone for TransformationRef
impl Clone for TransformationRef
Source§fn clone(&self) -> TransformationRef
fn clone(&self) -> TransformationRef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransformationRef
impl Debug for TransformationRef
Source§impl PartialEq for TransformationRef
impl PartialEq for TransformationRef
Source§fn eq(&self, other: &TransformationRef) -> bool
fn eq(&self, other: &TransformationRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransformationRef
Auto Trait Implementations§
impl Freeze for TransformationRef
impl RefUnwindSafe for TransformationRef
impl Send for TransformationRef
impl Sync for TransformationRef
impl Unpin for TransformationRef
impl UnsafeUnpin for TransformationRef
impl UnwindSafe for TransformationRef
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