#[repr(i32)]pub enum ProfilingVerbosity {
kLAYER_NAMES_ONLY = 0,
kNONE = 1,
kDETAILED = 2,
}Expand description
! ! \enum ProfilingVerbosity ! ! \brief List of verbosity levels of layer information exposed in NVTX annotations and in IEngineInspector. ! ! \see IBuilderConfig::setProfilingVerbosity(), ! IBuilderConfig::getProfilingVerbosity(), ! IEngineInspector !
Variants§
kLAYER_NAMES_ONLY = 0
!< Print only the layer names. This is the default setting.
kNONE = 1
!< Do not print any layer information.
kDETAILED = 2
!< Print detailed layer information including layer names and layer parameters.
Trait Implementations§
Source§impl Clone for ProfilingVerbosity
impl Clone for ProfilingVerbosity
Source§fn clone(&self) -> ProfilingVerbosity
fn clone(&self) -> ProfilingVerbosity
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ExternType for ProfilingVerbosity
impl ExternType for ProfilingVerbosity
Source§impl Hash for ProfilingVerbosity
impl Hash for ProfilingVerbosity
Source§impl PartialEq for ProfilingVerbosity
impl PartialEq for ProfilingVerbosity
impl Eq for ProfilingVerbosity
impl StructuralPartialEq for ProfilingVerbosity
impl UniquePtrTarget for ProfilingVerbosity
impl VectorElement for ProfilingVerbosity
impl WeakPtrTarget for ProfilingVerbosity
Auto Trait Implementations§
impl Freeze for ProfilingVerbosity
impl RefUnwindSafe for ProfilingVerbosity
impl Send for ProfilingVerbosity
impl Sync for ProfilingVerbosity
impl Unpin for ProfilingVerbosity
impl UnwindSafe for ProfilingVerbosity
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