Struct UCXLAddress

Source
pub struct UCXLAddress {
    pub agent: String,
    pub role: Option<String>,
    pub project: String,
    pub task: String,
    pub temporal: TemporalAxis,
    pub path: String,
}
Expand description

Represents a parsed UCXL address.

What: Holds the components extracted from a UCXL URI – the agent, an optional role, the project identifier, task name, temporal axis, and the resource path within the project.

How: The struct is constructed via the FromStr implementation which validates the scheme, splits the address into its constituent parts and populates the fields. The Display implementation performs the inverse operation.

Why: UCXL addresses are the primary routing mechanism inside CHORUS. Encapsulating them in a dedicated type provides type‑safety and makes it easy to work with address components in the rest of the codebase.

Fields§

§agent: String

The identifier of the agent (e.g., a user or system component).

§role: Option<String>

Optional role associated with the agent (e.g., “admin”).

§project: String

The project namespace this address belongs to.

§task: String

The specific task within the project.

§temporal: TemporalAxis

Temporal axis indicating present, past or future.

§path: String

Path to the resource relative to the project root.

Trait Implementations§

Source§

impl Clone for UCXLAddress

Source§

fn clone(&self) -> UCXLAddress

Returns a copy 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 UCXLAddress

Source§

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

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

impl Display for UCXLAddress

Source§

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

Serialises the address back to its canonical string form.

What: Constructs a ucxl:// URI including optional role and path.

How: Conditionally inserts the role component, then formats the project, task, temporal token and optional path using standard write! semantics.

Why: Needed when emitting addresses (e.g., logging events or generating links) so that external tools can consume them.

Source§

impl FromStr for UCXLAddress

Source§

fn from_str(address: &str) -> Result<Self, Self::Err>

Parses a full UCXL address string into a UCXLAddress value.

What: Validates the scheme (ucxl://), extracts the agent, optional role, project, task, temporal axis and the trailing resource path.

How: The implementation performs a series of split operations, handling optional components and converting the temporal token via TemporalAxis::from_str. Errors are surfaced as descriptive strings.

Why: Centralises address parsing logic, ensuring that all parts of the system interpret UCXL URIs consistently.

Source§

type Err = String

The associated error which can be returned from parsing.
Source§

impl PartialEq for UCXLAddress

Source§

fn eq(&self, other: &UCXLAddress) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for UCXLAddress

Source§

impl StructuralPartialEq for UCXLAddress

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, 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> 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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.