Struct json_ld_context_processing::Context
source · pub struct Context<T = IriBuf, B = BlankIdBuf> { /* private fields */ }
Expand description
Processed JSON-LD context.
Represents the result of the context processing algorithm implemented
by the json-ld-context-processing
crate.
Implementations§
source§impl<T, B> Context<T, B>
impl<T, B> Context<T, B>
sourcepub fn new(base_iri: Option<T>) -> Context<T, B>where
T: Clone,
pub fn new(base_iri: Option<T>) -> Context<T, B>where
T: Clone,
Create a new context with the given base IRI.
sourcepub fn get<Q>(&self, term: &Q) -> Option<TermDefinitionRef<'_, T, B>>
pub fn get<Q>(&self, term: &Q) -> Option<TermDefinitionRef<'_, T, B>>
Returns a reference to the given term
definition, if any.
sourcepub fn get_normal<Q>(&self, term: &Q) -> Option<&NormalTermDefinition<T, B>>
pub fn get_normal<Q>(&self, term: &Q) -> Option<&NormalTermDefinition<T, B>>
Returns a reference to the given term
normal definition, if any.
sourcepub fn get_type(&self) -> Option<&TypeTermDefinition>
pub fn get_type(&self) -> Option<&TypeTermDefinition>
Returns a reference to the @type
definition, if any.
sourcepub fn contains_term<Q>(&self, term: &Q) -> bool
pub fn contains_term<Q>(&self, term: &Q) -> bool
Checks if the given term
is defined.
sourcepub fn original_base_url(&self) -> Option<&T>
pub fn original_base_url(&self) -> Option<&T>
Returns the original base URL of the context.
sourcepub fn vocabulary(&self) -> Option<&Term<T, B>>
pub fn vocabulary(&self) -> Option<&Term<T, B>>
Returns the @vocab
value, if any.
sourcepub fn default_language(&self) -> Option<&LenientLangTag>
pub fn default_language(&self) -> Option<&LenientLangTag>
Returns the default @language
value.
sourcepub fn default_base_direction(&self) -> Option<Direction>
pub fn default_base_direction(&self) -> Option<Direction>
Returns the default @direction
value.
sourcepub fn previous_context(&self) -> Option<&Context<T, B>>
pub fn previous_context(&self) -> Option<&Context<T, B>>
Returns a reference to the previous context.
sourcepub fn definitions(&self) -> &Definitions<T, B>
pub fn definitions(&self) -> &Definitions<T, B>
Returns a handle to the term definitions.
sourcepub fn has_protected_items(&self) -> bool
pub fn has_protected_items(&self) -> bool
Checks if the context has a protected definition.
sourcepub fn inverse(&self) -> &InverseContext<T, B>
pub fn inverse(&self) -> &InverseContext<T, B>
Returns the inverse of this context.
sourcepub fn set_normal(
&mut self,
key: Key,
definition: Option<NormalTermDefinition<T, B>>,
) -> Option<NormalTermDefinition<T, B>>
pub fn set_normal( &mut self, key: Key, definition: Option<NormalTermDefinition<T, B>>, ) -> Option<NormalTermDefinition<T, B>>
Sets the normal definition for the given term key
.
sourcepub fn set_type(
&mut self,
type_: Option<TypeTermDefinition>,
) -> Option<TypeTermDefinition>
pub fn set_type( &mut self, type_: Option<TypeTermDefinition>, ) -> Option<TypeTermDefinition>
Sets the @type
definition.
sourcepub fn set_base_iri(&mut self, iri: Option<T>)
pub fn set_base_iri(&mut self, iri: Option<T>)
Sets the base IRI.
sourcepub fn set_vocabulary(&mut self, vocab: Option<Term<T, B>>)
pub fn set_vocabulary(&mut self, vocab: Option<Term<T, B>>)
Sets the @vocab
value.
sourcepub fn set_default_language(&mut self, lang: Option<LenientLangTagBuf>)
pub fn set_default_language(&mut self, lang: Option<LenientLangTagBuf>)
Sets the default @language
value.
sourcepub fn set_default_base_direction(&mut self, dir: Option<Direction>)
pub fn set_default_base_direction(&mut self, dir: Option<Direction>)
Sets the default @direction
value.
sourcepub fn set_previous_context(&mut self, previous: Context<T, B>)
pub fn set_previous_context(&mut self, previous: Context<T, B>)
Sets the previous context.
sourcepub fn into_syntax_definition(
self,
vocabulary: &impl Vocabulary<Iri = T, BlankId = B>,
) -> Definition
pub fn into_syntax_definition( self, vocabulary: &impl Vocabulary<Iri = T, BlankId = B>, ) -> Definition
Converts this context into its syntactic definition.
pub fn map_ids<U, C>( self, map_iri: impl FnMut(T) -> U, map_id: impl FnMut(Id<T, B>) -> Id<U, C>, ) -> Context<U, C>
Trait Implementations§
source§impl<T, B> IntoSyntax<T, B> for Context<T, B>where
B: Clone,
impl<T, B> IntoSyntax<T, B> for Context<T, B>where
B: Clone,
fn into_syntax( self, vocabulary: &impl Vocabulary<Iri = T, BlankId = B>, ) -> Context
Auto Trait Implementations§
impl<T = IriBuf, B = BlankIdBuf> !Freeze for Context<T, B>
impl<T, B> RefUnwindSafe for Context<T, B>
impl<T, B> Send for Context<T, B>
impl<T, B> Sync for Context<T, B>
impl<T, B> Unpin for Context<T, B>
impl<T, B> UnwindSafe for Context<T, B>where
T: UnwindSafe,
B: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> BorrowUnordered for T
impl<T> BorrowUnordered for T
fn as_unordered(&self) -> &Unordered<T>
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)