Struct rdom::node::concrete::ConcreteNodeWeak[][src]

pub struct ConcreteNodeWeak<S: AnyNodeStorage> { /* fields omitted */ }

A strongly-typed handle to a node with a weak reference. S may be the underlying storage type of any node.

Trait Implementations

impl<S: Clone + AnyNodeStorage> Clone for ConcreteNodeWeak<S>[src]

impl From<ConcreteNodeWeak<AttributeNodeStorage>> for AnyNodeWeak[src]

impl From<ConcreteNodeWeak<CDataSectionNodeStorage>> for AnyNodeWeak[src]

impl From<ConcreteNodeWeak<CommentNodeStorage>> for AnyNodeWeak[src]

impl From<ConcreteNodeWeak<DocumentFragmentNodeStorage>> for AnyNodeWeak[src]

impl From<ConcreteNodeWeak<DocumentNodeStorage>> for AnyNodeWeak[src]

impl From<ConcreteNodeWeak<DocumentTypeNodeStorage>> for AnyNodeWeak[src]

impl From<ConcreteNodeWeak<ElementNodeStorage>> for AnyNodeWeak[src]

impl From<ConcreteNodeWeak<ProcessingInstructionNodeStorage>> for AnyNodeWeak[src]

impl From<ConcreteNodeWeak<TextNodeStorage>> for AnyNodeWeak[src]

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<ElementNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<AttributeNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<TextNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<CDataSectionNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<ProcessingInstructionNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<CommentNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<DocumentNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<DocumentTypeNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

impl TryFrom<AnyNodeWeak> for ConcreteNodeWeak<DocumentFragmentNodeStorage>[src]

type Error = AnyNodeWeak

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<S> RefUnwindSafe for ConcreteNodeWeak<S> where
    S: RefUnwindSafe

impl<S> Send for ConcreteNodeWeak<S> where
    S: Send + Sync

impl<S> Sync for ConcreteNodeWeak<S> where
    S: Send + Sync

impl<S> Unpin for ConcreteNodeWeak<S>

impl<S> UnwindSafe for ConcreteNodeWeak<S> where
    S: RefUnwindSafe

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.