pub struct External<T: 'static> {
    pub adjusted_size: i64,
    /* private fields */
}

Fields§

§adjusted_size: i64

Implementations§

source§

impl<T: 'static> External<T>

source

pub fn new(value: T) -> Self

source

pub fn new_with_size_hint(value: T, size_hint: usize) -> Self

size_hint is a value to tell Node.js GC how much memory is used by this External object.

If getting the exact size_hint is difficult, you can provide an approximate value, it’s only effect to the GC.

If your External object is not effect to GC, you can use External::new instead.

Trait Implementations§

source§

impl<T: 'static> AsMut<T> for External<T>

source§

fn as_mut(&mut self) -> &mut T

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T: 'static> AsRef<T> for External<T>

source§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T: 'static> Deref for External<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T: 'static> DerefMut for External<T>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<T: 'static> From<T> for External<T>

source§

fn from(t: T) -> Self

Converts to this type from the input type.
source§

impl<T: 'static> FromNapiValue for External<T>

source§

unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>

Safety Read more
source§

fn from_unknown(value: JsUnknown) -> Result<Self>

source§

impl<T: 'static> ToNapiValue for External<T>

source§

unsafe fn to_napi_value(env: napi_env, val: Self) -> Result<napi_value>

Safety Read more
source§

impl<T: 'static> TypeName for External<T>

source§

impl<T: 'static> ValidateNapiValue for External<T>

source§

unsafe fn validate(env: napi_env, napi_val: napi_value) -> Result<napi_value>

Safety Read more
source§

impl<T: 'static + Send> Send for External<T>

source§

impl<T: 'static + Sync> Sync for External<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for External<T>where T: RefUnwindSafe,

§

impl<T> Unpin for External<T>

§

impl<T> UnwindSafe for External<T>where T: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

const: unstable · source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> JsValuesTupleIntoVec for Twhere T: ToNapiValue,

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.