Struct jupyter_types::JupyterContext
source · pub struct JupyterContext {
pub theme: JupyterTheme,
pub record_limit: usize,
pub object_limit: usize,
pub object_depth: usize,
}Expand description
The running context of the Jupyter notebook
Fields§
§theme: JupyterThemeThe theme of the Jupyter notebook
record_limit: usizeLimit the number of output lists to prevent the front end from getting stuck
object_limit: usizeLimit the number of output objects to prevent the front end from getting stuck
object_depth: usizeLimit the depth of output objects to prevent the front end from getting stuck
Trait Implementations§
source§impl Clone for JupyterContext
impl Clone for JupyterContext
source§fn clone(&self) -> JupyterContext
fn clone(&self) -> JupyterContext
Returns a copy 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 JupyterContext
impl Debug for JupyterContext
source§impl Default for JupyterContext
impl Default for JupyterContext
impl Copy for JupyterContext
Auto Trait Implementations§
impl RefUnwindSafe for JupyterContext
impl Send for JupyterContext
impl Sync for JupyterContext
impl Unpin for JupyterContext
impl UnwindSafe for JupyterContext
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