pub enum ArtifactContext {
LiveGet,
LiveSubmit,
Offline,
}Expand description
Capture context for canonical artifact runtime entries.
Variants§
LiveGet
Live URL open flow (GET-like fetch path).
LiveSubmit
Live form submission flow.
Offline
Offline import or replay.
Implementations§
Trait Implementations§
Source§impl Clone for ArtifactContext
impl Clone for ArtifactContext
Source§fn clone(&self) -> ArtifactContext
fn clone(&self) -> ArtifactContext
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 ArtifactContext
impl Debug for ArtifactContext
Source§impl PartialEq for ArtifactContext
impl PartialEq for ArtifactContext
Source§fn eq(&self, other: &ArtifactContext) -> bool
fn eq(&self, other: &ArtifactContext) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ArtifactContext
impl Eq for ArtifactContext
impl StructuralPartialEq for ArtifactContext
Auto Trait Implementations§
impl Freeze for ArtifactContext
impl RefUnwindSafe for ArtifactContext
impl Send for ArtifactContext
impl Sync for ArtifactContext
impl Unpin for ArtifactContext
impl UnsafeUnpin for ArtifactContext
impl UnwindSafe for ArtifactContext
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