pub enum RenderDoc {
Available {
api: RenderDocApi,
},
NotAvailable {
reason: String,
},
}
Expand description
RenderDoc API type
Variants§
Available
RenderDoc functionality is available
Fields
§
api: RenderDocApi
RenderDoc API with function pointers
NotAvailable
RenderDoc functionality is not available
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RenderDoc
impl RefUnwindSafe for RenderDoc
impl Send for RenderDoc
impl Sync for RenderDoc
impl Unpin for RenderDoc
impl UnwindSafe for RenderDoc
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