[][src]Struct rdftk_skos::simple::concept::Concept

pub struct Concept { /* fields omitted */ }

Implementations

impl Concept[src]

pub fn sub_concept(&mut self, uri: &IRIRef) -> Rc<RefCell<Self>>[src]

pub fn sub_concept_with_label(
    &mut self,
    uri: &IRIRef,
    text: &str,
    language: &str
) -> Rc<RefCell<Self>>
[src]

pub fn instance(&mut self, uri: &IRIRef) -> Rc<RefCell<Self>>[src]

pub fn instance_with_label(
    &mut self,
    uri: &IRIRef,
    text: &str,
    language: &str
) -> Rc<RefCell<Self>>
[src]

pub fn part(&mut self, uri: &IRIRef) -> Rc<RefCell<Self>>[src]

pub fn part_with_label(
    &mut self,
    uri: &IRIRef,
    text: &str,
    language: &str
) -> Rc<RefCell<Self>>
[src]

pub fn related(&mut self, uri: &IRIRef) -> Rc<RefCell<Self>>[src]

pub fn related_with_label(
    &mut self,
    uri: &IRIRef,
    text: &str,
    language: &str
) -> Rc<RefCell<Self>>
[src]

pub fn has_concepts(&self) -> bool[src]

pub fn concepts(
    &self
) -> impl Iterator<Item = &(ConceptRelation, Rc<RefCell<Concept>>)>
[src]

pub fn concepts_flattened(&self) -> Vec<Rc<RefCell<Concept>>>[src]

Trait Implementations

impl Clone for Concept[src]

impl Debug for Concept[src]

impl Labeled for Concept[src]

impl PartialEq<Concept> for Concept[src]

impl Propertied for Concept[src]

impl Resource for Concept[src]

impl StructuralPartialEq for Concept[src]

impl ToStatements for Concept[src]

Auto Trait Implementations

impl !RefUnwindSafe for Concept

impl !Send for Concept

impl !Sync for Concept

impl Unpin for Concept

impl !UnwindSafe for Concept

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,