pub struct JsNSRStats {
pub training_examples: u32,
pub successful_inferences: u32,
pub programs_learned: u32,
pub vocabulary_size: u32,
}Expand description
Machine statistics
Fields§
§training_examples: u32§successful_inferences: u32§programs_learned: u32§vocabulary_size: u32Trait Implementations§
Source§impl FromNapiValue for JsNSRStats
impl FromNapiValue for JsNSRStats
Source§unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
Safety Read more
fn from_unknown(value: JsUnknown) -> Result<Self, Error>
Source§impl ToNapiValue for JsNSRStats
impl ToNapiValue for JsNSRStats
Source§unsafe fn to_napi_value(env: napi_env, val: JsNSRStats) -> Result<napi_value>
unsafe fn to_napi_value(env: napi_env, val: JsNSRStats) -> Result<napi_value>
Safety Read more
Source§impl TypeName for JsNSRStats
impl TypeName for JsNSRStats
Source§impl ValidateNapiValue for JsNSRStats
impl ValidateNapiValue for JsNSRStats
Source§unsafe fn validate(
env: *mut napi_env__,
napi_val: *mut napi_value__,
) -> Result<*mut napi_value__, Error>
unsafe fn validate( env: *mut napi_env__, napi_val: *mut napi_value__, ) -> Result<*mut napi_value__, Error>
Safety Read more
Auto Trait Implementations§
impl Freeze for JsNSRStats
impl RefUnwindSafe for JsNSRStats
impl Send for JsNSRStats
impl Sync for JsNSRStats
impl Unpin for JsNSRStats
impl UnsafeUnpin for JsNSRStats
impl UnwindSafe for JsNSRStats
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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