operations tier

operations-runbook

_No description in Cargo.toml._

Tieroperations
Roleunclassified (baselined)
Pathcrates/operations/runbook
Edition2021
Targetsoperations_runbook
Public items0 across 0 modules
Tests6

What it is for

Library crates for operational runbooks.

Runbooks are documented procedures for handling operational tasks. They are content-only (no auto-execute) and designed to guide staff through standard operating procedures.

# Features

# Example

use operations_runbook::{Runbook, Step, Link, Visibility, StepType, LinkType};
use uuid::Uuid;

// Create a runbook for password resets
let runbook = Runbook::new(Uuid::new_v4(), "Password Reset", "account")
.with_description("Standard procedure for resetting user passwords")
.with_visibility(Visibility::Staff)
.with_step(
Step::new(Uuid::new_v4(), 1, "Verify Identity", "Ask security questions")
.with_type(StepType::Instruction)
)
.with_step(
Step::new(Uuid::new_v4(), 2, "Note", "Never share the temporary password via email")
.with_type(StepType::Warning)
);

assert_eq!(runbook.step_count(), 2);

Capabilities

No public items.

How to use it

From this crate's own rustdoc:

use operations_runbook::{Runbook, Step, Link, Visibility, StepType, LinkType};
use uuid::Uuid;

// Create a runbook for password resets
let runbook = Runbook::new(Uuid::new_v4(), "Password Reset", "account")
    .with_description("Standard procedure for resetting user passwords")
    .with_visibility(Visibility::Staff)
    .with_step(
        Step::new(Uuid::new_v4(), 1, "Verify Identity", "Ask security questions")
            .with_type(StepType::Instruction)
    )
    .with_step(
        Step::new(Uuid::new_v4(), 2, "Note", "Never share the temporary password via email")
            .with_type(StepType::Warning)
    );

assert_eq!(runbook.step_count(), 2);

Module structure

No public modules: the crate root is its whole surface.

Public surface

No public items.

Re-exports. Exported here, defined elsewhere.

ExportDefined in
{CreateLinkInput,CreateRunbookInput,CreateStepInput,Link,LinkType,Runbook,RunbookSummary,Step,StepType,UpdateRunbookInput,Visibility,}models::{CreateLinkInput,CreateRunbookInput,CreateStepInput,Link,LinkType,Runbook,RunbookSummary,Step,StepType,UpdateRunbookInput,Visibility,}
{Result,RunbookError}error::{Result,RunbookError}

Boundary

Depends on no other workspace tier.

Shares tier operations with 40 other crates: operations-approval-workflow, operations-assessments, operations-block-imaging, operations-boot-media, operations-browser-agent-worker, operations-camera-discovery, operations-camera-liveview, operations-camera-registry, … (40 total).

_What this crate deliberately does NOT own is a judgment. No committed registry records one for it, so none is stated here._

Where it sits

Tier (ontology)operations
Architectural role (taxonomy)unclassified (baselined)
Locationcrates/operations/runbook
Vocabulary in force (lexicon)current

Dependencies

Runtime, from outside the workspace.

CrateRequirementFeaturesOptionalOnly on
chrono^0.4serdenoalways
serde^1derivenoalways
thiserror^2noalways
uuid^1v4, v7, serde, jsnoalways

Development, from outside the workspace.

CrateRequirementFeaturesOptionalOnly on
serde_json^1noalways

Build. None.

Depended on by. 1 workspace crate.

Signal flow — what reaches this crate, and what it reaches.

flowchart LR
  n_application_runbook["application-runbook"] -->|uses| SELF
  SELF["operations-runbook"]
  classDef self fill:#1f883d,stroke:#1f883d,color:#fff;
  class SELF self;

Feature flags

No Cargo features are defined: every capability is unconditional, so no consumer can receive a half-wired crate.

Targets

KindNameSource
liboperations_runbook`src/lib.rs`

Error model

No public error type was detected: no public item declares a type named *Error, and no public signature returns one.

Operational characteristics

PropertyEvidence
async public surfacenone detected
async runtimenone detected
database accessnone detected
network I/Onone detected
unsafe codenone detected
environment variablesnone detected

No unsafe block, unsafe fn, unsafe impl or unsafe trait was found by the parser anywhere in this crate's source.

Configuration

No environment variable is read with a literal name anywhere in this crate. A variable whose key is computed at run time cannot be listed here, and is not claimed to be absent.

1 workspace crate depends on this one: application-runbook.

Verification

KindCount
Unit tests6
Integration tests0
Examples0
Doctests1

What the tests establish, by name:

Documentation coverage

MeasureDocumentedTotal
Public items with rustdoc00
Public modules with a //! block00

Metrics

MetricValue
Rust source files3
Source lines597
Code lines414
Public API items0
Public modules0
Tests6
Examples0
Cargo features0
Direct runtime dependencies4
Workspace reverse dependencies1
pie showData
    title Rust source composition
    "Code" : 414
    "Blank or comment" : 183

Generation

Rendered by tools-corpus corpus readme from repository evidence alone, renderer schema 2, lexicon current. No model, network service or database was consulted. Regenerate with tools-corpus corpus readme --write; verify with --check.

All operations · Manual