Skip to main content

DisplayRef

Struct DisplayRef 

Source
pub struct DisplayRef<'a, T: ToString + PartialEq + Clone> { /* private fields */ }
Expand description

Displays a borrowed value, updating when not equal to the previous value.

Trait Implementations§

Source§

impl<'a, T: 'static + ToString + PartialEq + Clone> Builder<Web> for DisplayRef<'a, T>

Source§

type State = DisplayState<T>

The associated state of the component.
Source§

fn build(self, cx: BuildCx<'_>) -> Self::State

Source§

fn rebuild(self, _: RebuildCx<'_>, state: &mut Self::State)

Auto Trait Implementations§

§

impl<'a, T> Freeze for DisplayRef<'a, T>

§

impl<'a, T> RefUnwindSafe for DisplayRef<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for DisplayRef<'a, T>
where T: Sync,

§

impl<'a, T> Sync for DisplayRef<'a, T>
where T: Sync,

§

impl<'a, T> Unpin for DisplayRef<'a, T>

§

impl<'a, T> UnsafeUnpin for DisplayRef<'a, T>

§

impl<'a, T> UnwindSafe for DisplayRef<'a, T>
where T: RefUnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsAny for T
where T: Any,

Source§

fn as_mut_dyn_any(&mut self) -> &mut (dyn Any + 'static)

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
Source§

impl<T, S> View for T
where S: ViewMarker, T: Builder<Web, State = S>,