Struct Tag

Source
pub struct Tag(/* private fields */);
Expand description

A Tag that semantically characterises an event.

Tags are non-empty unicode strings in NFC representation (i.e. normalized by canonical decomposition followed by composition). Thus, and H are different tags while the various encodings of é are all represented by the codepoint E9.

Implementations§

Source§

impl Tag

Source

pub fn len(&self) -> usize

Source

pub fn with_id(self, id: impl Into<String>) -> TagSet

Constructs an TagSet with <tag> and <tag>:<id>

§Example
use ax_types::{TagSet, tags, tag};
let tags: TagSet = tag!("machine").with_id("Drill-404");
assert_eq!(tags, tags!("machine", "machine:Drill-404"));

Trait Implementations§

Source§

impl Add<&Tag> for &TagSet

Source§

type Output = TagSet

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Tag) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Tag> for TagSet

Source§

type Output = TagSet

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Tag) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Into<String>> Add<T> for Tag

Concatenate another part to this tag

let user_tag = tag!("user:") + "Bob";
let machine_tag = tag!("machine:") + format!("{}-{}", "thing", 42);

assert_eq!(user_tag, tag!("user:Bob"));
assert_eq!(machine_tag, tag!("machine:thing-42"));

This will never panic because the initial tag is already proven to be a valid tag.

Source§

type Output = Tag

The resulting type after applying the + operator.
Source§

fn add(self, rhs: T) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Tag> for &TagSet

Source§

type Output = TagSet

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Tag) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Tag> for TagSet

Source§

type Output = TagSet

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Tag) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<Tag> for TagSet

Source§

fn add_assign(&mut self, rhs: Tag)

Performs the += operation. Read more
Source§

impl AsRef<str> for Tag

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for Tag

Source§

fn clone(&self) -> Tag

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 Tag

Source§

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

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

impl Decode<DagCborCodec> for Tag

Source§

fn decode<R: Read + Seek>(c: DagCborCodec, r: &mut R) -> Result<Self>

Decode from an impl Read. Read more
Source§

impl<'de> Deserialize<'de> for Tag

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Tag

Source§

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

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

impl Encode<DagCborCodec> for Tag

Source§

fn encode<W: Write>(&self, c: DagCborCodec, w: &mut W) -> Result<()>

Encodes into a impl Write. Read more
Source§

impl FromIterator<Tag> for TagSet

Source§

fn from_iter<T: IntoIterator<Item = Tag>>(iter: T) -> Self

Creates a value from an iterator. Read more
Source§

impl FromStr for Tag

Source§

type Err = ParseError

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

fn from_str(s: &str) -> Result<Self, ParseError>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for Tag

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for Tag

Source§

fn cmp(&self, other: &Tag) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Tag

Source§

fn eq(&self, other: &Tag) -> 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 PartialOrd for Tag

Source§

fn partial_cmp(&self, other: &Tag) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for Tag

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl SubAssign<&Tag> for TagSet

Source§

fn sub_assign(&mut self, rhs: &Tag)

Performs the -= operation. Read more
Source§

impl TryFrom<&str> for Tag

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(value: &str) -> Result<Self, ParseError>

Performs the conversion.
Source§

impl TryFrom<Arc<str>> for Tag

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(value: Arc<str>) -> Result<Self, ParseError>

Performs the conversion.
Source§

impl Eq for Tag

Source§

impl StructuralPartialEq for Tag

Auto Trait Implementations§

§

impl Freeze for Tag

§

impl !RefUnwindSafe for Tag

§

impl Send for Tag

§

impl Sync for Tag

§

impl Unpin for Tag

§

impl !UnwindSafe for Tag

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> References<RawCodec> for T

Source§

fn references<R, E>(_c: RawCodec, _r: &mut R, _set: &mut E) -> Result<(), Error>
where R: Read, E: Extend<Cid<64>>,

Scrape the references from an impl Read. Read more
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> 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.
Source§

impl<T> DagCbor for T

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,