pub enum AttributeValue {
String(String),
Bool(bool),
ReactiveString(ReactiveValue<String>),
ReactiveBool(ReactiveValue<bool>),
}Variants§
Auto Trait Implementations§
impl Freeze for AttributeValue
impl !RefUnwindSafe for AttributeValue
impl !Send for AttributeValue
impl !Sync for AttributeValue
impl Unpin for AttributeValue
impl !UnwindSafe for AttributeValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more