[][src]Struct lv2_atom::AtomURIDCollection

pub struct AtomURIDCollection {
    pub blank: URID<Blank>,
    pub double: URID<Double>,
    pub float: URID<Float>,
    pub int: URID<Int>,
    pub long: URID<Long>,
    pub urid: URID<AtomURID>,
    pub bool: URID<Bool>,
    pub chunk: URID<Chunk>,
    pub literal: URID<Literal>,
    pub object: URID<Object>,
    pub property: URID<Property>,
    pub string: URID<String>,
    pub tuple: URID<Tuple>,
    pub sequence: URID<Sequence>,
    // some fields omitted
}

Collection with the URIDs of all UriBounds in this crate.

Fields

blank: URID<Blank>double: URID<Double>float: URID<Float>int: URID<Int>long: URID<Long>urid: URID<AtomURID>bool: URID<Bool>chunk: URID<Chunk>literal: URID<Literal>object: URID<Object>property: URID<Property>string: URID<String>tuple: URID<Tuple>sequence: URID<Sequence>

Implementations

impl AtomURIDCollection[src]

pub fn vector<S: ScalarAtom>(&self) -> URID<Vector<S>>[src]

Trait Implementations

impl Clone for AtomURIDCollection[src]

impl URIDCollection for AtomURIDCollection[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.