[][src]Struct rdftk_skos::simple::collection::Collection

pub struct Collection { /* fields omitted */ }

Implementations

impl Collection[src]

pub fn sub_collection(
    &mut self,
    uri: &IRIRef,
    ordered: bool
) -> Rc<RefCell<Collection>>
[src]

pub fn sub_collection_labeled(
    &mut self,
    uri: &IRIRef,
    ordered: bool,
    label: &str,
    language: &str
) -> Rc<RefCell<Collection>>
[src]

pub fn add_member_concept(&mut self, concept: Rc<RefCell<Concept>>)[src]

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

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

pub fn has_member(&self, uri: &IRIRef) -> bool[src]

pub fn members(&self) -> impl Iterator<Item = &Member>[src]

pub fn collections_flattened(&self) -> Vec<Rc<RefCell<Collection>>>[src]

Trait Implementations

impl Clone for Collection[src]

impl Debug for Collection[src]

impl Labeled for Collection[src]

impl PartialEq<Collection> for Collection[src]

impl Propertied for Collection[src]

impl Resource for Collection[src]

impl StructuralPartialEq for Collection[src]

impl ToStatements for Collection[src]

Auto Trait Implementations

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>,