pub struct CodexPacketInputV1 {
pub current_pass: String,
pub next_pass: String,
pub issue: String,
pub source_map: Vec<String>,
pub changed_files: Vec<String>,
pub commands_run: Vec<CommandRunReportV1>,
pub receipt_ids: Vec<ArtifactId>,
pub blockers: Vec<String>,
pub notes: Vec<String>,
}Fields§
§current_pass: String§next_pass: String§issue: String§source_map: Vec<String>§changed_files: Vec<String>§commands_run: Vec<CommandRunReportV1>§receipt_ids: Vec<ArtifactId>§blockers: Vec<String>§notes: Vec<String>Trait Implementations§
Source§impl Clone for CodexPacketInputV1
impl Clone for CodexPacketInputV1
Source§fn clone(&self) -> CodexPacketInputV1
fn clone(&self) -> CodexPacketInputV1
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 CodexPacketInputV1
impl Debug for CodexPacketInputV1
impl Eq for CodexPacketInputV1
Source§impl PartialEq for CodexPacketInputV1
impl PartialEq for CodexPacketInputV1
Source§fn eq(&self, other: &CodexPacketInputV1) -> bool
fn eq(&self, other: &CodexPacketInputV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodexPacketInputV1
Auto Trait Implementations§
impl Freeze for CodexPacketInputV1
impl RefUnwindSafe for CodexPacketInputV1
impl Send for CodexPacketInputV1
impl Sync for CodexPacketInputV1
impl Unpin for CodexPacketInputV1
impl UnsafeUnpin for CodexPacketInputV1
impl UnwindSafe for CodexPacketInputV1
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