pub struct RunManifest {
pub run_id: String,
pub repo_path: String,
pub git_commit: String,
pub composer_lock_hash: String,
pub indexer_config_hash: String,
pub framework: String,
pub include_vendor: bool,
pub include_tests: bool,
pub mode: String,
pub index_prefix: String,
pub indexes: HashMap<String, String>,
pub created_at: DateTime<Utc>,
}Fields§
§run_id: String§repo_path: String§git_commit: String§composer_lock_hash: String§indexer_config_hash: String§framework: String§include_vendor: bool§include_tests: bool§mode: String§index_prefix: String§indexes: HashMap<String, String>§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for RunManifest
impl Clone for RunManifest
Source§fn clone(&self) -> RunManifest
fn clone(&self) -> RunManifest
Returns a duplicate of the value. Read more
1.0.0 · 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 RunManifest
impl Debug for RunManifest
Source§impl<'de> Deserialize<'de> for RunManifest
impl<'de> Deserialize<'de> for RunManifest
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 RunManifest
impl RefUnwindSafe for RunManifest
impl Send for RunManifest
impl Sync for RunManifest
impl Unpin for RunManifest
impl UnsafeUnpin for RunManifest
impl UnwindSafe for RunManifest
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