pub struct BlobArtifactDescriptor {
pub kind: PersistedArtifactKind,
pub hints: Vec<BlobStorageHint>,
}Fields§
§kind: PersistedArtifactKind§hints: Vec<BlobStorageHint>Implementations§
Source§impl BlobArtifactDescriptor
impl BlobArtifactDescriptor
pub fn new( kind: PersistedArtifactKind, hints: impl Into<Vec<BlobStorageHint>>, ) -> Self
pub fn checkpoint_manifest() -> Self
pub fn tool_state_snapshot() -> Self
pub fn plugin_session_snapshot() -> Self
pub fn execution_state_snapshot() -> Self
pub fn lashlang_module() -> Self
Trait Implementations§
Source§impl Clone for BlobArtifactDescriptor
impl Clone for BlobArtifactDescriptor
Source§fn clone(&self) -> BlobArtifactDescriptor
fn clone(&self) -> BlobArtifactDescriptor
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 BlobArtifactDescriptor
impl Debug for BlobArtifactDescriptor
Source§impl<'de> Deserialize<'de> for BlobArtifactDescriptor
impl<'de> Deserialize<'de> for BlobArtifactDescriptor
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
impl Eq for BlobArtifactDescriptor
Source§impl Hash for BlobArtifactDescriptor
impl Hash for BlobArtifactDescriptor
Source§impl PartialEq for BlobArtifactDescriptor
impl PartialEq for BlobArtifactDescriptor
Source§fn eq(&self, other: &BlobArtifactDescriptor) -> bool
fn eq(&self, other: &BlobArtifactDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BlobArtifactDescriptor
impl Serialize for BlobArtifactDescriptor
impl StructuralPartialEq for BlobArtifactDescriptor
Auto Trait Implementations§
impl Freeze for BlobArtifactDescriptor
impl RefUnwindSafe for BlobArtifactDescriptor
impl Send for BlobArtifactDescriptor
impl Sync for BlobArtifactDescriptor
impl Unpin for BlobArtifactDescriptor
impl UnsafeUnpin for BlobArtifactDescriptor
impl UnwindSafe for BlobArtifactDescriptor
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