#[repr(C)]pub enum RenderingResult {
ContinueRenderingChildren = 0,
ContinueRenderingWithoutChildren = 1,
}
Expand description
Returned by the render()
function on items to indicate whether the rendering of
children should be handled by the caller, of if the item took care of that (for example
through layer indirection)
Variants§
Trait Implementations§
Source§impl Default for RenderingResult
impl Default for RenderingResult
Source§fn default() -> RenderingResult
fn default() -> RenderingResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RenderingResult
impl RefUnwindSafe for RenderingResult
impl Send for RenderingResult
impl Sync for RenderingResult
impl Unpin for RenderingResult
impl UnwindSafe for RenderingResult
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