PackIr

Struct PackIr 

Source
pub struct PackIr {
    pub manifest: PackManifest,
    pub markdown: Vec<MarkdownDoc>,
    pub adapters: Vec<AdapterDef>,
    pub policies: Vec<PolicyDef>,
    pub injections: Vec<InjectionDef>,
    pub providers: Vec<ProviderDef>,
    pub memories: Vec<MemoryDef>,
    pub intents: Vec<IntentDef>,
    pub flows: Vec<FlowDefinition>,
}

Fields§

§manifest: PackManifest§markdown: Vec<MarkdownDoc>§adapters: Vec<AdapterDef>§policies: Vec<PolicyDef>§injections: Vec<InjectionDef>§providers: Vec<ProviderDef>§memories: Vec<MemoryDef>§intents: Vec<IntentDef>§flows: Vec<FlowDefinition>

Implementations§

Source§

impl PackIr

Source

pub fn new( manifest: PackManifest, markdown: Vec<MarkdownDoc>, ) -> Result<Self, PackError>

Constructs a PackIr by validating the provided manifest, extracting configurations from Markdown fence blocks, checking for duplicates, and merging TOML- and Markdown-derived definitions into a single intermediate representation.

This performs the following high-level steps:

  • Validates profiles, toolsets, agents, injections, and routing declared in the manifest.
  • Builds adapters, policies, injections, and providers from the TOML manifest.
  • Extracts adapters, policies, injections, and providers from Markdown fence blocks.
  • Checks for duplicates within Markdown and across TOML vs Markdown (adapters, policies, providers, and injections). Duplicate definitions cause a validation error.
  • Merges Markdown-derived definitions into the TOML-derived lists and returns the merged IR.
§Returns

Ok(Self) containing the manifest, the original Markdown documents, and the merged lists of adapters, policies, injections, and providers on success; Err(PackError) if validation, TOML parsing, or Markdown extraction fails.

§Examples
// Construct a PackIr from a manifest and any Markdown docs.
// (The concrete construction of `manifest` and `markdown` depends on your crate's API.)
let manifest = build_manifest();
let markdown = load_markdown();
let pack_ir = PackIr::new(manifest, markdown).expect("manifest and markdown must be valid");

Trait Implementations§

Source§

impl Clone for PackIr

Source§

fn clone(&self) -> PackIr

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 PackIr

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for PackIr

§

impl RefUnwindSafe for PackIr

§

impl Send for PackIr

§

impl Sync for PackIr

§

impl Unpin for PackIr

§

impl UnwindSafe for PackIr

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.

§

impl<T> Instrument for T

§

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

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

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> 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.
§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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