pub struct ModelNotebook(pub Notebook<ModelJudgment>);Tuple Fields§
§0: Notebook<ModelJudgment>Trait Implementations§
Source§impl Arbitrary for ModelNotebook
impl Arbitrary for ModelNotebook
Source§type Parameters = ()
type Parameters = ()
The type of parameters that
arbitrary_with accepts for configuration
of the generated Strategy. Parameters must implement Default.Source§type Strategy = BoxedStrategy<ModelNotebook>
type Strategy = BoxedStrategy<ModelNotebook>
The type of
Strategy used to generate values of type Self.Source§fn arbitrary_with(_: Self::Parameters) -> Self::Strategy
fn arbitrary_with(_: Self::Parameters) -> Self::Strategy
Source§impl Debug for ModelNotebook
impl Debug for ModelNotebook
Source§impl<'de> Deserialize<'de> for ModelNotebook
impl<'de> Deserialize<'de> for ModelNotebook
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 PartialEq for ModelNotebook
impl PartialEq for ModelNotebook
Source§impl Serialize for ModelNotebook
impl Serialize for ModelNotebook
impl Eq for ModelNotebook
impl StructuralPartialEq for ModelNotebook
Auto Trait Implementations§
impl Freeze for ModelNotebook
impl RefUnwindSafe for ModelNotebook
impl Send for ModelNotebook
impl Sync for ModelNotebook
impl Unpin for ModelNotebook
impl UnwindSafe for ModelNotebook
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more