[][src]Enum druid::argvalue::ArgValue

pub enum ArgValue {
    String(String<U20>),
    U32(u32),
    I32(i32),
    Error(String<U20>),
    None,
}

Variants

String(String<U20>)
U32(u32)
I32(i32)
Error(String<U20>)
None

Methods

impl ArgValue[src]

pub fn to_string(&self) -> String<U20>[src]

Trait Implementations

impl Clone for ArgValue[src]

impl Debug for ArgValue[src]

impl<'_> From<&'_ str> for ArgValue[src]

impl From<String<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>> for ArgValue[src]

impl From<i32> for ArgValue[src]

impl From<u32> for ArgValue[src]

impl PartialEq<ArgValue> for ArgValue[src]

impl StructuralPartialEq for ArgValue[src]

Auto Trait Implementations

impl Send for ArgValue

impl Sync for ArgValue

impl Unpin for ArgValue

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> RoundFrom<T> for T[src]

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 
[src]

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

type Output = T

Should always be Self

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.