pub struct RunExecutionRecord {
pub cwd: Option<String>,
pub source_dir: Option<String>,
pub env: BTreeMap<String, String>,
pub adapter: Option<String>,
pub repo_path: Option<String>,
pub worktree_path: Option<String>,
pub branch: Option<String>,
pub base_ref: Option<String>,
pub cleanup: Option<String>,
}Fields§
§cwd: Option<String>§source_dir: Option<String>§env: BTreeMap<String, String>§adapter: Option<String>§repo_path: Option<String>§worktree_path: Option<String>§branch: Option<String>§base_ref: Option<String>§cleanup: Option<String>Trait Implementations§
Source§impl Clone for RunExecutionRecord
impl Clone for RunExecutionRecord
Source§fn clone(&self) -> RunExecutionRecord
fn clone(&self) -> RunExecutionRecord
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 RunExecutionRecord
impl Debug for RunExecutionRecord
Source§impl Default for RunExecutionRecord
impl Default for RunExecutionRecord
Source§fn default() -> RunExecutionRecord
fn default() -> RunExecutionRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunExecutionRecordwhere
RunExecutionRecord: Default,
impl<'de> Deserialize<'de> for RunExecutionRecordwhere
RunExecutionRecord: Default,
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
Source§impl PartialEq for RunExecutionRecord
impl PartialEq for RunExecutionRecord
Source§impl Serialize for RunExecutionRecord
impl Serialize for RunExecutionRecord
impl Eq for RunExecutionRecord
impl StructuralPartialEq for RunExecutionRecord
Auto Trait Implementations§
impl Freeze for RunExecutionRecord
impl RefUnwindSafe for RunExecutionRecord
impl Send for RunExecutionRecord
impl Sync for RunExecutionRecord
impl Unpin for RunExecutionRecord
impl UnsafeUnpin for RunExecutionRecord
impl UnwindSafe for RunExecutionRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.