pub enum InspectTarget {
Layers,
Memory,
All,
Model(String),
}Expand description
Target for inspect command.
Variants§
Layers
Inspect layer structure
Memory
Inspect memory usage
All
Inspect all info
Model(String)
Inspect specific model by name
Trait Implementations§
Source§impl Clone for InspectTarget
impl Clone for InspectTarget
Source§fn clone(&self) -> InspectTarget
fn clone(&self) -> InspectTarget
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 InspectTarget
impl Debug for InspectTarget
Source§impl PartialEq for InspectTarget
impl PartialEq for InspectTarget
impl StructuralPartialEq for InspectTarget
Auto Trait Implementations§
impl Freeze for InspectTarget
impl RefUnwindSafe for InspectTarget
impl Send for InspectTarget
impl Sync for InspectTarget
impl Unpin for InspectTarget
impl UnwindSafe for InspectTarget
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