Skip to main content

EventType

Enum EventType 

Source
pub enum EventType {
Show 33 variants PlanCreated { plan_id: String, package_count: usize, }, ExecutionStarted, ExecutionFinished { result: ExecutionResult, }, PackageStarted { name: String, version: String, }, PackageAttempted { attempt: u32, command: String, }, PackageOutput { stdout_tail: String, stderr_tail: String, }, PackagePublished { duration_ms: u64, }, PackageFailed { class: ErrorClass, message: String, }, PackageSkipped { reason: String, }, PublishReconciling { method: ReadinessMethod, }, PublishReconciled { outcome: ReconciliationOutcome, }, StateEventDriftDetected { drift: StateEventDrift, }, PackageYanked { crate_name: String, version: String, reason: String, exit_code: i32, }, RehearsalStarted { registry: String, plan_id: String, package_count: usize, }, RehearsalPackagePublished { name: String, version: String, duration_ms: u128, }, RehearsalPackageFailed { name: String, version: String, class: ErrorClass, message: String, }, RehearsalComplete { passed: bool, registry: String, plan_id: String, summary: String, }, RehearsalSmokeCheckStarted { name: String, version: String, registry: String, }, RehearsalSmokeCheckSucceeded { name: String, version: String, duration_ms: u128, }, RehearsalSmokeCheckFailed { name: String, version: String, message: String, }, RetryBackoffStarted { attempt: u32, max_attempts: u32, delay_ms: u64, next_attempt_at: DateTime<Utc>, reason: ErrorClass, message: String, }, ReadinessStarted { method: ReadinessMethod, }, ReadinessPoll { attempt: u32, visible: bool, }, ReadinessComplete { duration_ms: u64, attempts: u32, }, ReadinessTimeout { max_wait_ms: u64, }, IndexReadinessStarted { crate_name: String, version: String, }, IndexReadinessCheck { crate_name: String, version: String, found: bool, }, IndexReadinessComplete { crate_name: String, version: String, visible: bool, }, PreflightStarted, PreflightWorkspaceVerify { passed: bool, output: String, }, PreflightNewCrateDetected { crate_name: String, }, PreflightOwnershipCheck { crate_name: String, verified: bool, }, PreflightComplete { finishability: Finishability, },
}
Expand description

Types of events that can occur during publishing.

These events are logged to provide a complete audit trail of the publish operation. Each variant carries relevant data.

§Categories

  • Lifecycle events: Plan created, execution started/finished
  • Package events: Started, attempted, output, published, failed, skipped
  • Readiness events: Started, polled, completed, timeout
  • Preflight events: Started, verified, ownership checked, completed

§Example

use shipper::types::{EventType, ExecutionResult, ErrorClass, ReadinessMethod, Finishability};

// Lifecycle events
let plan_created = EventType::PlanCreated {
    plan_id: "abc123".to_string(),
    package_count: 5,
};
let started = EventType::ExecutionStarted;
let finished = EventType::ExecutionFinished {
    result: ExecutionResult::Success
};

// Package events
let pkg_started = EventType::PackageStarted {
    name: "my-crate".to_string(),
    version: "1.0.0".to_string(),
};
let pkg_failed = EventType::PackageFailed {
    class: ErrorClass::Retryable,
    message: "rate limited".to_string(),
};

// Readiness events
let ready = EventType::ReadinessStarted {
    method: ReadinessMethod::Api,
};

// Preflight events
let preflight = EventType::PreflightComplete {
    finishability: Finishability::Proven,
};

Variants§

§

PlanCreated

Fields

§plan_id: String
§package_count: usize
§

ExecutionStarted

§

ExecutionFinished

Fields

§

PackageStarted

Fields

§name: String
§version: String
§

PackageAttempted

Fields

§attempt: u32
§command: String
§

PackageOutput

Fields

§stdout_tail: String
§stderr_tail: String
§

PackagePublished

Fields

§duration_ms: u64
§

PackageFailed

Fields

§message: String
§

PackageSkipped

Fields

§reason: String
§

PublishReconciling

Fields

§

PublishReconciled

§

StateEventDriftDetected

Fields

§

PackageYanked

Fields

§crate_name: String
§version: String
§reason: String
§exit_code: i32
§

RehearsalStarted

Fields

§registry: String
§plan_id: String
§package_count: usize
§

RehearsalPackagePublished

Fields

§name: String
§version: String
§duration_ms: u128
§

RehearsalPackageFailed

Fields

§name: String
§version: String
§message: String
§

RehearsalComplete

Fields

§passed: bool
§registry: String
§plan_id: String

Plan ID the rehearsal ran against. The hard gate (#97 PR 3) consults this: a subsequent shipper publish for the same plan_id can rely on this rehearsal; if the workspace changes (plan_id shifts), the rehearsal is stale and the gate fires.

§summary: String
§

RehearsalSmokeCheckStarted

Fields

§name: String
§version: String
§registry: String
§

RehearsalSmokeCheckSucceeded

Fields

§name: String
§version: String
§duration_ms: u128
§

RehearsalSmokeCheckFailed

Fields

§name: String
§version: String
§message: String
§

RetryBackoffStarted

Fields

§attempt: u32
§max_attempts: u32
§delay_ms: u64
§next_attempt_at: DateTime<Utc>
§reason: ErrorClass
§message: String
§

ReadinessStarted

Fields

§

ReadinessPoll

Fields

§attempt: u32
§visible: bool
§

ReadinessComplete

Fields

§duration_ms: u64
§attempts: u32
§

ReadinessTimeout

Fields

§max_wait_ms: u64
§

IndexReadinessStarted

Fields

§crate_name: String
§version: String
§

IndexReadinessCheck

Fields

§crate_name: String
§version: String
§found: bool
§

IndexReadinessComplete

Fields

§crate_name: String
§version: String
§visible: bool
§

PreflightStarted

§

PreflightWorkspaceVerify

Fields

§passed: bool
§output: String
§

PreflightNewCrateDetected

Fields

§crate_name: String
§

PreflightOwnershipCheck

Fields

§crate_name: String
§verified: bool
§

PreflightComplete

Fields

§finishability: Finishability

Trait Implementations§

Source§

impl Clone for EventType

Source§

fn clone(&self) -> EventType

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EventType

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for EventType

Source§

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 Serialize for EventType

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,