pub enum DataProcessingRef {
Id(String),
Ref(Arc<DataProcessing>),
}
Expand description
Reference to a DataProcessing
. This is either a String with the ID or (ideally) an Arc<DataProcessing>
to the exact instance of the DataProcessing
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DataProcessingRef
impl Clone for DataProcessingRef
Auto Trait Implementations§
impl Freeze for DataProcessingRef
impl RefUnwindSafe for DataProcessingRef
impl Send for DataProcessingRef
impl Sync for DataProcessingRef
impl Unpin for DataProcessingRef
impl UnwindSafe for DataProcessingRef
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