pub trait Any<T, B, M = ()> {
    fn as_ref(&self) -> Ref<'_, T, B, M>;

    fn id_entry<'a>(&'a self) -> Option<&'a Entry<Id<T, B>, M>>
    where
        M: 'a
, { ... } fn id<'a>(&'a self) -> Option<&'a Meta<Id<T, B>, M>>
    where
        M: 'a
, { ... } fn language<'a>(&'a self) -> Option<LenientLanguageTag<'_>>
    where
        T: 'a,
        B: 'a,
        M: 'a
, { ... } fn is_value(&self) -> bool { ... } fn is_node(&self) -> bool { ... } fn is_graph(&self) -> bool { ... } fn is_list(&self) -> bool { ... } }

Required Methods

Provided Methods

source

fn id_entry<'a>(&'a self) -> Option<&'a Entry<Id<T, B>, M>>where
    M: 'a,

Implementors