pub struct CodexPacketV1 {Show 13 fields
pub packet_id: ArtifactId,
pub kind: ArtifactKindV1,
pub current_pass: String,
pub next_pass: String,
pub source_basis: 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>,
pub generated_at: DateTime<Utc>,
}Fields§
§packet_id: ArtifactId§kind: ArtifactKindV1§current_pass: String§next_pass: String§source_basis: 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>§generated_at: DateTime<Utc>Implementations§
Source§impl CodexPacketV1
impl CodexPacketV1
pub fn new(input: CodexPacketInputV1) -> Self
pub fn has_resume_context(&self) -> bool
Trait Implementations§
Source§impl Clone for CodexPacketV1
impl Clone for CodexPacketV1
Source§fn clone(&self) -> CodexPacketV1
fn clone(&self) -> CodexPacketV1
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 CodexPacketV1
impl Debug for CodexPacketV1
Source§impl<'de> Deserialize<'de> for CodexPacketV1
impl<'de> Deserialize<'de> for CodexPacketV1
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 CodexPacketV1
Source§impl JsonSchema for CodexPacketV1
impl JsonSchema for CodexPacketV1
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for CodexPacketV1
impl PartialEq for CodexPacketV1
Source§fn eq(&self, other: &CodexPacketV1) -> bool
fn eq(&self, other: &CodexPacketV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CodexPacketV1
impl Serialize for CodexPacketV1
impl StructuralPartialEq for CodexPacketV1
Auto Trait Implementations§
impl Freeze for CodexPacketV1
impl RefUnwindSafe for CodexPacketV1
impl Send for CodexPacketV1
impl Sync for CodexPacketV1
impl Unpin for CodexPacketV1
impl UnsafeUnpin for CodexPacketV1
impl UnwindSafe for CodexPacketV1
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