pub enum ReceiptRole {
Input,
Output,
Auxiliary,
}Expand description
Logical role of a file in a dataset operation.
Variants§
Input
File consumed by an operation.
Output
File produced by an operation.
Auxiliary
File associated with an operation but not consumed or produced by it.
Trait Implementations§
Source§impl Clone for ReceiptRole
impl Clone for ReceiptRole
Source§fn clone(&self) -> ReceiptRole
fn clone(&self) -> ReceiptRole
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 ReceiptRole
impl Debug for ReceiptRole
Source§impl<'de> Deserialize<'de> for ReceiptRole
impl<'de> Deserialize<'de> for ReceiptRole
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ReceiptRole
impl PartialEq for ReceiptRole
Source§fn eq(&self, other: &ReceiptRole) -> bool
fn eq(&self, other: &ReceiptRole) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReceiptRole
impl Serialize for ReceiptRole
impl Copy for ReceiptRole
impl Eq for ReceiptRole
impl StructuralPartialEq for ReceiptRole
Auto Trait Implementations§
impl Freeze for ReceiptRole
impl RefUnwindSafe for ReceiptRole
impl Send for ReceiptRole
impl Sync for ReceiptRole
impl Unpin for ReceiptRole
impl UnsafeUnpin for ReceiptRole
impl UnwindSafe for ReceiptRole
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