pub struct RunBundleStoreRecord {
pub artifact_kind: String,
pub ownership: String,
pub support_tier: String,
pub semantic_status: String,
pub run_id: String,
pub bundle_schema: String,
pub recorded_at: String,
pub bundle_path: PathBuf,
pub content_digest: ContentDigest,
pub canonical_event_log_path: PathBuf,
pub known_limits: Vec<String>,
}Fields§
§artifact_kind: String§ownership: String§support_tier: String§semantic_status: String§run_id: String§bundle_schema: String§recorded_at: String§bundle_path: PathBuf§content_digest: ContentDigest§canonical_event_log_path: PathBuf§known_limits: Vec<String>Trait Implementations§
Source§impl Clone for RunBundleStoreRecord
impl Clone for RunBundleStoreRecord
Source§fn clone(&self) -> RunBundleStoreRecord
fn clone(&self) -> RunBundleStoreRecord
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 RunBundleStoreRecord
impl Debug for RunBundleStoreRecord
Source§impl<'de> Deserialize<'de> for RunBundleStoreRecord
impl<'de> Deserialize<'de> for RunBundleStoreRecord
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 RunBundleStoreRecord
Source§impl PartialEq for RunBundleStoreRecord
impl PartialEq for RunBundleStoreRecord
Source§fn eq(&self, other: &RunBundleStoreRecord) -> bool
fn eq(&self, other: &RunBundleStoreRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RunBundleStoreRecord
impl Serialize for RunBundleStoreRecord
impl StructuralPartialEq for RunBundleStoreRecord
Auto Trait Implementations§
impl Freeze for RunBundleStoreRecord
impl RefUnwindSafe for RunBundleStoreRecord
impl Send for RunBundleStoreRecord
impl Sync for RunBundleStoreRecord
impl Unpin for RunBundleStoreRecord
impl UnsafeUnpin for RunBundleStoreRecord
impl UnwindSafe for RunBundleStoreRecord
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