pub enum ReceiptStorage {
Inline(String),
StoreRow {
table: String,
key: String,
},
ArtifactPath(String),
}Expand description
Where a receipt’s artifact is stored.
Variants§
Inline(String)
Stored inline in the receipt itself.
StoreRow
Stored in the forge DB.
ArtifactPath(String)
Stored at a filesystem path.
Trait Implementations§
Source§impl Clone for ReceiptStorage
impl Clone for ReceiptStorage
Source§fn clone(&self) -> ReceiptStorage
fn clone(&self) -> ReceiptStorage
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 ReceiptStorage
impl Debug for ReceiptStorage
Source§impl<'de> Deserialize<'de> for ReceiptStorage
impl<'de> Deserialize<'de> for ReceiptStorage
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
Auto Trait Implementations§
impl Freeze for ReceiptStorage
impl RefUnwindSafe for ReceiptStorage
impl Send for ReceiptStorage
impl Sync for ReceiptStorage
impl Unpin for ReceiptStorage
impl UnsafeUnpin for ReceiptStorage
impl UnwindSafe for ReceiptStorage
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