pub enum RegistrationType {
Generic,
Specific,
}
Expand description
Used by CustomDataRenderer
to determine the priority of the renderer relative to other registered renderers.
Variants§
Generic
Specific
This data renderer wants to run before any generic data renderers.
Use this if you want to take priority over rendering of specific types.
Auto Trait Implementations§
impl Freeze for RegistrationType
impl RefUnwindSafe for RegistrationType
impl Send for RegistrationType
impl Sync for RegistrationType
impl Unpin for RegistrationType
impl UnwindSafe for RegistrationType
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