pub enum DetailLevel {
Zero,
One,
}
Expand description
Level of detail requested when requesting code introspection
Variants§
Zero
Equivalent to IPython’s ?
operator.
Typically fetches the documentation.
One
Equivalent to IPython’s ??
operator.
Typically fetches the source code.
Trait Implementations§
Source§impl Debug for DetailLevel
impl Debug for DetailLevel
Auto Trait Implementations§
impl Freeze for DetailLevel
impl RefUnwindSafe for DetailLevel
impl Send for DetailLevel
impl Sync for DetailLevel
impl Unpin for DetailLevel
impl UnwindSafe for DetailLevel
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