pub enum AttrValue {
String(Rc<String>),
Computed(Computed<String>),
ComputedOpt(Computed<Option<String>>),
Value(Value<String>),
ValueOpt(Value<Option<String>>),
}Variants§
String(Rc<String>)
Computed(Computed<String>)
ComputedOpt(Computed<Option<String>>)
Value(Value<String>)
ValueOpt(Value<Option<String>>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AttrValue
impl !RefUnwindSafe for AttrValue
impl !Send for AttrValue
impl !Sync for AttrValue
impl Unpin for AttrValue
impl !UnwindSafe for AttrValue
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