pub trait Qualified: Display + Sized {
    // Required method
    fn new<A, N>(authority: A, name: N) -> Self
       where A: Into<Authority>,
             N: Into<Name>;

    // Provided methods
    fn private<N>(name: N) -> Self
       where N: Into<Name> { ... }
    fn parse_encoded(schema_name: &str) -> Result<Self, InvalidNameError> { ... }
    fn encoded(&self) -> String { ... }
}
Expand description

Functions for creating qualified names

Required Methods§

source

fn new<A, N>(authority: A, name: N) -> Self
where A: Into<Authority>, N: Into<Name>,

Creates a new qualified name.

Provided Methods§

source

fn private<N>(name: N) -> Self
where N: Into<Name>,

Creates a name that is not meant to be shared with other developers or projects.

source

fn parse_encoded(schema_name: &str) -> Result<Self, InvalidNameError>

Parses a schema name that was previously encoded via Self::encoded().

Errors

Returns InvalidNameError if the name contains invalid escape sequences or contains more than two periods.

source

fn encoded(&self) -> String

Encodes this schema name such that the authority and name can be safely parsed using Self::parse_encoded.

Object Safety§

This trait is not object safe.

Implementors§