[][src]Struct yew::html::AnyScope

pub struct AnyScope { /* fields omitted */ }

Untyped scope used for accessing parent scope

Implementations

impl AnyScope[src]

pub fn get_parent(&self) -> Option<&AnyScope>[src]

Returns the parent scope

pub fn get_type_id(&self) -> &TypeId[src]

Returns the type of the linked component

pub fn downcast<COMP: Component>(self) -> Scope<COMP>[src]

Attempts to downcast into a typed scope

Trait Implementations

impl Clone for AnyScope[src]

impl Debug for AnyScope[src]

impl<COMP: Component> From<Scope<COMP>> for AnyScope[src]

Auto Trait Implementations

impl !RefUnwindSafe for AnyScope

impl !Send for AnyScope

impl !Sync for AnyScope

impl Unpin for AnyScope

impl !UnwindSafe for AnyScope

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[src]

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

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

impl<T> CloneAny for T where
    T: Clone + Any
[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.