Struct dioxus_core::nodes::VText[][src]

pub struct VText<'bump> {
    pub text: &'bump str,
}

Fields

text: &'bump str

Implementations

impl<'a> VText<'a>[src]

pub fn new(text: &'a str) -> Self[src]

Trait Implementations

impl<'bump> Debug for VText<'bump>[src]

impl<'de: 'bump, 'bump> Deserialize<'de> for VText<'bump>[src]

impl<'bump> PartialEq<VText<'bump>> for VText<'bump>[src]

impl<'bump> Serialize for VText<'bump>[src]

impl<'bump> StructuralPartialEq for VText<'bump>[src]

Auto Trait Implementations

impl<'bump> RefUnwindSafe for VText<'bump>

impl<'bump> Send for VText<'bump>

impl<'bump> Sync for VText<'bump>

impl<'bump> Unpin for VText<'bump>

impl<'bump> UnwindSafe for VText<'bump>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.