#[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 Debug for ProfilingVerbosity
impl Debug for ProfilingVerbosity
Source§impl From<ProfilingVerbosity> for ProfilingVerbosity
impl From<ProfilingVerbosity> for ProfilingVerbosity
Source§fn from(value: ProfilingVerbosity) -> Self
fn from(value: ProfilingVerbosity) -> Self
Converts to this type from the input type.
Source§impl Hash for ProfilingVerbosity
impl Hash for ProfilingVerbosity
Source§impl Into<ProfilingVerbosity> for ProfilingVerbosity
impl Into<ProfilingVerbosity> for ProfilingVerbosity
Source§fn into(self) -> ProfilingVerbosity
fn into(self) -> ProfilingVerbosity
Converts this type into the (usually inferred) input type.
Source§impl Ord for ProfilingVerbosity
impl Ord for ProfilingVerbosity
Source§fn cmp(&self, other: &ProfilingVerbosity) -> Ordering
fn cmp(&self, other: &ProfilingVerbosity) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ProfilingVerbosity
impl PartialEq for ProfilingVerbosity
Source§impl PartialOrd for ProfilingVerbosity
impl PartialOrd for ProfilingVerbosity
impl Copy for ProfilingVerbosity
impl Eq for ProfilingVerbosity
impl StructuralPartialEq 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 UnsafeUnpin 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