pub enum PropertyHint<'l> {
None,
Range {
range: Range<f64>,
step: f64,
slider: bool,
},
Enum {
values: &'l [&'l str],
},
Flags {
values: &'l [&'l str],
},
NodePathToEditedNode,
}
Variants§
Implementations§
Auto Trait Implementations§
impl<'l> Freeze for PropertyHint<'l>
impl<'l> RefUnwindSafe for PropertyHint<'l>
impl<'l> Send for PropertyHint<'l>
impl<'l> Sync for PropertyHint<'l>
impl<'l> Unpin for PropertyHint<'l>
impl<'l> UnwindSafe for PropertyHint<'l>
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