pub enum EditHint {
DatePicker,
Select {
options: u32,
},
MultiSelect {
options: u32,
},
OpSelect {
options: Vec<OpChoice>,
},
QuantSelect {
options: Vec<OpSym>,
subject: Box<str>,
list: Box<str>,
},
FuncSelect {
options: Vec<Box<str>>,
},
}Variants§
Trait Implementations§
impl StructuralPartialEq for EditHint
Auto Trait Implementations§
impl Freeze for EditHint
impl RefUnwindSafe for EditHint
impl Send for EditHint
impl Sync for EditHint
impl Unpin for EditHint
impl UnsafeUnpin for EditHint
impl UnwindSafe for EditHint
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