pub enum UnitID {
String(String),
Float(f64),
Int(i64),
}
Variants§
Trait Implementations§
Source§impl From<UnitID> for DynamicValue
impl From<UnitID> for DynamicValue
Auto Trait Implementations§
impl Freeze for UnitID
impl RefUnwindSafe for UnitID
impl Send for UnitID
impl Sync for UnitID
impl Unpin for UnitID
impl UnwindSafe for UnitID
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