pub enum NotebookSelector {
NotebookDocumentFilterWithNotebook(NotebookDocumentFilterWithNotebook),
NotebookDocumentFilterWithCells(NotebookDocumentFilterWithCells),
}Variants§
NotebookDocumentFilterWithNotebook(NotebookDocumentFilterWithNotebook)
NotebookDocumentFilterWithCells(NotebookDocumentFilterWithCells)
Trait Implementations§
Source§impl Clone for NotebookSelector
impl Clone for NotebookSelector
Source§fn clone(&self) -> NotebookSelector
fn clone(&self) -> NotebookSelector
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NotebookSelector
impl Debug for NotebookSelector
Source§impl<'de> Deserialize<'de> for NotebookSelector
impl<'de> Deserialize<'de> for NotebookSelector
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<NotebookDocumentFilterWithCells> for NotebookSelector
impl From<NotebookDocumentFilterWithCells> for NotebookSelector
Source§fn from(v: NotebookDocumentFilterWithCells) -> Self
fn from(v: NotebookDocumentFilterWithCells) -> Self
Converts to this type from the input type.
Source§impl From<NotebookDocumentFilterWithNotebook> for NotebookSelector
impl From<NotebookDocumentFilterWithNotebook> for NotebookSelector
Source§fn from(v: NotebookDocumentFilterWithNotebook) -> Self
fn from(v: NotebookDocumentFilterWithNotebook) -> Self
Converts to this type from the input type.
Source§impl Hash for NotebookSelector
impl Hash for NotebookSelector
Source§impl PartialEq for NotebookSelector
impl PartialEq for NotebookSelector
Source§fn eq(&self, other: &NotebookSelector) -> bool
fn eq(&self, other: &NotebookSelector) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NotebookSelector
impl Serialize for NotebookSelector
impl Eq for NotebookSelector
impl StructuralPartialEq for NotebookSelector
Auto Trait Implementations§
impl Freeze for NotebookSelector
impl RefUnwindSafe for NotebookSelector
impl Send for NotebookSelector
impl Sync for NotebookSelector
impl Unpin for NotebookSelector
impl UnsafeUnpin for NotebookSelector
impl UnwindSafe for NotebookSelector
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