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: StringThe identifier of the agent (e.g., a user or system component).
role: Option<String>Optional role associated with the agent (e.g., “admin”).
project: StringThe project namespace this address belongs to.
task: StringThe specific task within the project.
temporal: TemporalAxisTemporal axis indicating present, past or future.
path: StringPath to the resource relative to the project root.
Trait Implementations§
Source§impl Clone for UCXLAddress
impl Clone for UCXLAddress
Source§fn clone(&self) -> UCXLAddress
fn clone(&self) -> UCXLAddress
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for UCXLAddress
impl Debug for UCXLAddress
Source§impl Display for UCXLAddress
impl Display for UCXLAddress
Source§fn fmt(&self, f: &mut Formatter<'_>) -> Result
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
impl FromStr for UCXLAddress
Source§fn from_str(address: &str) -> Result<Self, Self::Err>
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.