Enum Id

Source
pub enum Id<I = IriBuf, B = BlankIdBuf> {
    Valid(Id<I, B>),
    Invalid(String),
}
Expand description

Node identifier.

Used to reference a node across a document or to a remote document. It can be an identifier (IRI), a blank node identifier for local blank nodes or an invalid reference (a string that is neither an IRI nor blank node identifier).

§Hash implementation

It is guaranteed that the Hash implementation of Id is transparent, meaning that the hash of Id::Valid(id) the same as id, and the hash of Id::Invalid(id) is the same as id.

This may be useful to define custom indexmap::Equivalent<Id<I, B>> implementation.

Variants§

§

Valid(Id<I, B>)

Valid node identifier.

§

Invalid(String)

Invalid reference.

Implementations§

Source§

impl<I, B> Id<I, B>
where I: From<IriBuf>, B: From<BlankIdBuf>,

Source

pub fn from_string(s: String) -> Id<I, B>

Source§

impl<I, B> Id<I, B>

Source

pub fn iri(iri: I) -> Id<I, B>

Source

pub fn blank(b: B) -> Id<I, B>

Source

pub fn from_string_in( vocabulary: &mut impl VocabularyMut<Iri = I, BlankId = B>, s: String, ) -> Id<I, B>

Source

pub fn is_valid(&self) -> bool

Checks if this is a valid reference.

Returns true is this reference is a node identifier or a blank node identifier, false otherwise.

Source

pub fn into_blank(self) -> Option<B>

Source

pub fn is_blank(&self) -> bool

Source

pub fn as_blank(&self) -> Option<&B>

Source

pub fn is_iri(&self) -> bool

Source

pub fn as_iri(&self) -> Option<&I>

Source

pub fn into_term(self) -> Term<I, B>

Source

pub fn as_ref(&self) -> Ref<'_, I, B>

Source

pub fn map<J, C>(self, f: impl FnOnce(Id<I, B>) -> Id<J, C>) -> Id<J, C>

Source§

impl<I, B> Id<I, B>
where I: AsRef<str>, B: AsRef<str>,

Source

pub fn as_str(&self) -> &str

Get a string representation of the reference.

This will either return a string slice of an IRI, or a blank node identifier.

Trait Implementations§

Source§

impl<T, B, N> AsRefWithContext<str, N> for Id<T, B>
where N: Vocabulary<Iri = T, BlankId = B>,

Source§

fn as_ref_with<'a>(&'a self, vocabulary: &'a N) -> &'a str

Source§

impl<I, B> Clone for Id<I, B>
where I: Clone, B: Clone,

Source§

fn clone(&self) -> Id<I, B>

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<T, B> Debug for Id<T, B>
where T: Debug, B: Debug,

Source§

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

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

impl<T, B> Display for Id<T, B>
where T: Display, B: Display,

Source§

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

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

impl<V> DisplayWithContext<V> for Id<<V as IriVocabulary>::Iri, <V as BlankIdVocabulary>::BlankId>

Source§

fn fmt_with(&self, vocabulary: &V, f: &mut Formatter<'_>) -> Result<(), Error>

Source§

impl<I> Equivalent<Id<I>> for BlankId

Source§

fn equivalent(&self, key: &Id<I>) -> bool

Compare self to key and return true if they are equal.
Source§

impl<I> Equivalent<Id<I>> for BlankIdBuf

Source§

fn equivalent(&self, key: &Id<I>) -> bool

Compare self to key and return true if they are equal.
Source§

impl<I, B> Equivalent<Id<I, B>> for Id<I, B>
where I: PartialEq, B: PartialEq,

Source§

fn equivalent(&self, key: &Id<I, B>) -> bool

Compare self to key and return true if they are equal.
Source§

impl<'a, B> Equivalent<Id<IriBuf, B>> for &'a Iri

Source§

fn equivalent(&self, key: &Id<IriBuf, B>) -> bool

Compare self to key and return true if they are equal.
Source§

impl<B> Equivalent<Id<IriBuf, B>> for IriBuf

Source§

fn equivalent(&self, key: &Id<IriBuf, B>) -> bool

Compare self to key and return true if they are equal.
Source§

impl<'a, T, B> From<&'a Id<T, B>> for Id<&'a T, &'a B>

Source§

fn from(r: &'a Id<T, B>) -> Id<&'a T, &'a B>

Converts to this type from the input type.
Source§

impl<T, B> From<Id<T, B>> for Term<T, B>

Source§

fn from(prop: Id<T, B>) -> Term<T, B>

Converts to this type from the input type.
Source§

impl<T, B> From<T> for Id<T, B>

Source§

fn from(id: T) -> Id<T, B>

Converts to this type from the input type.
Source§

impl<T, B> From<Id<T, B>> for Id<T, B>

Source§

fn from(r: Id<T, B>) -> Id<T, B>

Converts to this type from the input type.
Source§

impl<I, B> Hash for Id<I, B>
where I: Hash, B: Hash,

Source§

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

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<T, B, N> IntoJsonWithContext<N> for Id<T, B>
where N: Vocabulary<Iri = T, BlankId = B>,

Source§

fn into_json_with(self, context: &N) -> Value

Source§

impl<T, B> MappedEq for Id<T, B>
where T: PartialEq, B: PartialEq,

Source§

type BlankId = B

Source§

fn mapped_eq<'a, 'b, F>(&'a self, other: &Id<T, B>, f: F) -> bool
where F: Clone + Fn(&'a <Id<T, B> as MappedEq>::BlankId) -> &'b <Id<T, B> as MappedEq>::BlankId, <Id<T, B> as MappedEq>::BlankId: 'a + 'b,

Structural equality with mapped blank identifiers. Read more
Source§

impl<I, B> Ord for Id<I, B>
where I: Ord, B: Ord,

Source§

fn cmp(&self, other: &Id<I, B>) -> 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<I, B> PartialEq<I> for Id<I, B>
where I: PartialEq,

Source§

fn eq(&self, other: &I) -> 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<T, B> PartialEq<Id<T, B>> for Term<T, B>
where T: PartialEq, B: PartialEq,

Source§

fn eq(&self, r: &Id<T, B>) -> 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<T, B> PartialEq<Term<T, B>> for Id<T, B>
where T: PartialEq, B: PartialEq,

Source§

fn eq(&self, term: &Term<T, B>) -> 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<T, B> PartialEq<str> for Id<T, B>
where T: PartialEq<str>, B: PartialEq<str>,

Source§

fn eq(&self, other: &str) -> 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<I, B> PartialEq for Id<I, B>
where I: PartialEq, B: PartialEq,

Source§

fn eq(&self, other: &Id<I, B>) -> 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<I, B> PartialOrd for Id<I, B>
where I: PartialOrd, B: PartialOrd,

Source§

fn partial_cmp(&self, other: &Id<I, B>) -> 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<T, B, N> PrecomputeSizeWithContext<N> for Id<T, B>
where N: Vocabulary<Iri = T, BlankId = B>,

Source§

fn contextual_pre_compute_size( &self, vocabulary: &N, _options: &Options, _sizes: &mut Vec<Size>, ) -> Size

Source§

impl<T, B, N> PrintWithContext<N> for Id<T, B>
where N: Vocabulary<Iri = T, BlankId = B>,

Source§

fn contextual_fmt_with( &self, vocabulary: &N, f: &mut Formatter<'_>, _options: &Options, _indent: usize, ) -> Result<(), Error>

Source§

impl<T, B, N> PrintWithSizeAndContext<N> for Id<T, B>
where N: Vocabulary<Iri = T, BlankId = B>,

Source§

fn contextual_fmt_with_size( &self, vocabulary: &N, f: &mut Formatter<'_>, _options: &Options, _indent: usize, _sizes: &[Size], _index: &mut usize, ) -> Result<(), Error>

Source§

impl<'a, T, B> TryFrom<&'a Id<T, B>> for &'a Id<T, B>

Source§

type Error = &'a String

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

fn try_from( r: &'a Id<T, B>, ) -> Result<&'a Id<T, B>, <&'a Id<T, B> as TryFrom<&'a Id<T, B>>>::Error>

Performs the conversion.
Source§

impl<'a, T, B> TryFrom<&'a mut Id<T, B>> for &'a mut Id<T, B>

Source§

type Error = &'a mut String

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

fn try_from( r: &'a mut Id<T, B>, ) -> Result<&'a mut Id<T, B>, <&'a mut Id<T, B> as TryFrom<&'a mut Id<T, B>>>::Error>

Performs the conversion.
Source§

impl<T, B> TryFrom<Id<T, B>> for Id<T, B>

Source§

type Error = String

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

fn try_from( r: Id<T, B>, ) -> Result<Id<T, B>, <Id<T, B> as TryFrom<Id<T, B>>>::Error>

Performs the conversion.
Source§

impl<T, B> TryFrom<Term<T, B>> for Id<T, B>

Source§

type Error = Term<T, B>

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

fn try_from(term: Term<T, B>) -> Result<Id<T, B>, Term<T, B>>

Performs the conversion.
Source§

impl<I, B> TryFromJson<I, B> for Id<I, B>

Source§

fn try_from_json_in( vocabulary: &mut impl VocabularyMut<Iri = I, BlankId = B>, value: Value, ) -> Result<Id<I, B>, InvalidExpandedJson>

Source§

impl<I, B> Eq for Id<I, B>
where I: Eq, B: Eq,

Source§

impl<I, B> StructuralPartialEq for Id<I, B>

Auto Trait Implementations§

§

impl<I, B> Freeze for Id<I, B>
where B: Freeze, I: Freeze,

§

impl<I, B> RefUnwindSafe for Id<I, B>

§

impl<I, B> Send for Id<I, B>
where B: Send, I: Send,

§

impl<I, B> Sync for Id<I, B>
where B: Sync, I: Sync,

§

impl<I, B> Unpin for Id<I, B>
where B: Unpin, I: Unpin,

§

impl<I, B> UnwindSafe for Id<I, B>
where B: UnwindSafe, I: UnwindSafe,

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> At for T

Source§

fn at<M>(self, metadata: M) -> Meta<T, M>

Wraps self inside a Meta<Self, M> using the given metadata. 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> BorrowStripped for T

Source§

fn stripped(&self) -> &Stripped<T>

Source§

impl<T> BorrowUnordered for T

Source§

impl<T> CallHasher for T
where T: Hash + ?Sized,

Source§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

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<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<!> for T

Source§

fn from(t: !) -> T

Converts to this type from the input type.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, C> FromWithContext<T, C> for T

Source§

fn from_with(value: T, _context: &C) -> T

Source§

impl<T> Instrument for T

Source§

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

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

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, U, C> IntoWithContext<U, C> for T
where U: FromWithContext<T, C>,

Source§

fn into_with(self, context: &C) -> U

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. 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> ToOwned for T

Source§

type Owned = T

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> ToStringFallible for T
where T: Display,

Source§

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

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, C> TryFromWithContext<U, C> for T
where U: IntoWithContext<T, C>,

Source§

type Error = Infallible

Source§

fn try_from_with( value: U, context: &C, ) -> Result<T, <T as TryFromWithContext<U, C>>::Error>

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, U, C> TryIntoWithContext<U, C> for T
where U: TryFromWithContext<T, C>,

Source§

type Error = <U as TryFromWithContext<T, C>>::Error

Source§

fn try_into_with( self, context: &C, ) -> Result<U, <T as TryIntoWithContext<U, C>>::Error>

Source§

impl<T> WithContext for T
where T: ?Sized,

Source§

fn with<C>(&self, context: C) -> Contextual<&T, C>

Source§

fn into_with<C>(self, context: C) -> Contextual<T, C>

Source§

impl<T> WithSubscriber for T

Source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<V, T> RdfLiteralType<V> for T

Source§

impl<T> RdfLiteralValue for T
where T: From<String> + From<Value> + From<Value>,