pub struct NapiLookupFeatures {
pub patterns: NapiLookupPatterns,
pub joint_lookup_used: bool,
pub uses_runtime_tables: bool,
}Fields§
§patterns: NapiLookupPatterns§joint_lookup_used: bool§uses_runtime_tables: boolTrait Implementations§
Source§impl Clone for NapiLookupFeatures
impl Clone for NapiLookupFeatures
Source§fn clone(&self) -> NapiLookupFeatures
fn clone(&self) -> NapiLookupFeatures
Returns a duplicate 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 NapiLookupFeatures
impl Debug for NapiLookupFeatures
Source§impl Default for NapiLookupFeatures
impl Default for NapiLookupFeatures
Source§fn default() -> NapiLookupFeatures
fn default() -> NapiLookupFeatures
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NapiLookupFeatures
impl<'de> Deserialize<'de> for NapiLookupFeatures
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<LookupFeatures> for NapiLookupFeatures
impl From<LookupFeatures> for NapiLookupFeatures
Source§fn from(value: LookupFeatures) -> Self
fn from(value: LookupFeatures) -> Self
Converts to this type from the input type.
Source§impl From<NapiLookupFeatures> for LookupFeatures
impl From<NapiLookupFeatures> for LookupFeatures
Source§fn from(value: NapiLookupFeatures) -> Self
fn from(value: NapiLookupFeatures) -> Self
Converts to this type from the input type.
Source§impl FromNapiValue for NapiLookupFeatures
impl FromNapiValue for NapiLookupFeatures
Source§unsafe fn from_napi_value(
env: napi_env,
napi_val: napi_value,
) -> Result<NapiLookupFeatures>
unsafe fn from_napi_value( env: napi_env, napi_val: napi_value, ) -> Result<NapiLookupFeatures>
Safety Read more
fn from_unknown(value: Unknown<'_>) -> Result<Self, Error>
Source§impl Serialize for NapiLookupFeatures
impl Serialize for NapiLookupFeatures
Source§impl ToNapiValue for NapiLookupFeatures
impl ToNapiValue for NapiLookupFeatures
Source§unsafe fn to_napi_value(
env: napi_env,
val: NapiLookupFeatures,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: NapiLookupFeatures, ) -> Result<napi_value>
Safety Read more
fn into_unknown(self, env: &Env) -> Result<Unknown<'_>, Error>
Source§impl TypeName for NapiLookupFeatures
impl TypeName for NapiLookupFeatures
Auto Trait Implementations§
impl Freeze for NapiLookupFeatures
impl RefUnwindSafe for NapiLookupFeatures
impl Send for NapiLookupFeatures
impl Sync for NapiLookupFeatures
impl Unpin for NapiLookupFeatures
impl UnsafeUnpin for NapiLookupFeatures
impl UnwindSafe for NapiLookupFeatures
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