#[repr(C)]
pub struct ProxyTraps {
Show 30 fields pub enter: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: u32, _: *mut bool) -> bool>, pub getOwnPropertyDescriptor: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: MutableHandle<PropertyDescriptor>, _: *mut bool) -> bool>, pub defineProperty: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: Handle<PropertyDescriptor>, _: *mut ObjectOpResult) -> bool>, pub ownPropertyKeys: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandleIdVector) -> bool>, pub delete_: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: *mut ObjectOpResult) -> bool>, pub enumerate: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandleIdVector) -> bool>, pub getPrototypeIfOrdinary: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut bool, _: MutableHandle<*mut JSObject>) -> bool>, pub getPrototype: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandle<*mut JSObject>) -> bool>, pub setPrototype: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<*mut JSObject>, _: *mut ObjectOpResult) -> bool>, pub setImmutablePrototype: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut bool) -> bool>, pub preventExtensions: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut ObjectOpResult) -> bool>, pub isExtensible: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut bool) -> bool>, pub has: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: *mut bool) -> bool>, pub get: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<Value>, _: Handle<PropertyKey>, _: MutableHandle<Value>) -> bool>, pub set: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: Handle<Value>, _: Handle<Value>, _: *mut ObjectOpResult) -> bool>, pub call: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *const CallArgs) -> bool>, pub construct: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *const CallArgs) -> bool>, pub hasOwn: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: *mut bool) -> bool>, pub getOwnEnumerablePropertyKeys: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandleIdVector) -> bool>, pub nativeCall: Option<unsafe extern "C" fn(_: *mut JSContext, _: Option<unsafe extern "C" fn(_: Handle<Value>) -> bool>, _: Option<unsafe extern "C" fn(_: *mut JSContext, _: *const CallArgs) -> bool>, _: CallArgs) -> bool>, pub objectClassIs: Option<unsafe extern "C" fn(_: Handle<*mut JSObject>, _: ESClass, _: *mut JSContext) -> bool>, pub className: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>) -> *const i8>, pub fun_toString: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: bool) -> *mut JSString>, pub boxedValue_unbox: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandle<Value>) -> bool>, pub defaultValue: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: JSType, _: MutableHandle<Value>) -> bool>, pub trace: Option<unsafe extern "C" fn(_: *mut JSTracer, _: *mut JSObject)>, pub finalize: Option<unsafe extern "C" fn(_: *mut GCContext, _: *mut JSObject)>, pub objectMoved: Option<unsafe extern "C" fn(_: *mut JSObject, _: *mut JSObject) -> usize>, pub isCallable: Option<unsafe extern "C" fn(_: *mut JSObject) -> bool>, pub isConstructor: Option<unsafe extern "C" fn(_: *mut JSObject) -> bool>,
}

Fields§

§enter: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: u32, _: *mut bool) -> bool>§getOwnPropertyDescriptor: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: MutableHandle<PropertyDescriptor>, _: *mut bool) -> bool>§defineProperty: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: Handle<PropertyDescriptor>, _: *mut ObjectOpResult) -> bool>§ownPropertyKeys: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandleIdVector) -> bool>§delete_: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: *mut ObjectOpResult) -> bool>§enumerate: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandleIdVector) -> bool>§getPrototypeIfOrdinary: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut bool, _: MutableHandle<*mut JSObject>) -> bool>§getPrototype: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandle<*mut JSObject>) -> bool>§setPrototype: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<*mut JSObject>, _: *mut ObjectOpResult) -> bool>§setImmutablePrototype: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut bool) -> bool>§preventExtensions: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut ObjectOpResult) -> bool>§isExtensible: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut bool) -> bool>§has: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: *mut bool) -> bool>§get: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<Value>, _: Handle<PropertyKey>, _: MutableHandle<Value>) -> bool>§set: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: Handle<Value>, _: Handle<Value>, _: *mut ObjectOpResult) -> bool>§call: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *const CallArgs) -> bool>§construct: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *const CallArgs) -> bool>§hasOwn: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: Handle<PropertyKey>, _: *mut bool) -> bool>§getOwnEnumerablePropertyKeys: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandleIdVector) -> bool>§nativeCall: Option<unsafe extern "C" fn(_: *mut JSContext, _: Option<unsafe extern "C" fn(_: Handle<Value>) -> bool>, _: Option<unsafe extern "C" fn(_: *mut JSContext, _: *const CallArgs) -> bool>, _: CallArgs) -> bool>§objectClassIs: Option<unsafe extern "C" fn(_: Handle<*mut JSObject>, _: ESClass, _: *mut JSContext) -> bool>§className: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>) -> *const i8>§fun_toString: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: bool) -> *mut JSString>§boxedValue_unbox: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: MutableHandle<Value>) -> bool>§defaultValue: Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: JSType, _: MutableHandle<Value>) -> bool>§trace: Option<unsafe extern "C" fn(_: *mut JSTracer, _: *mut JSObject)>§finalize: Option<unsafe extern "C" fn(_: *mut GCContext, _: *mut JSObject)>§objectMoved: Option<unsafe extern "C" fn(_: *mut JSObject, _: *mut JSObject) -> usize>§isCallable: Option<unsafe extern "C" fn(_: *mut JSObject) -> bool>§isConstructor: Option<unsafe extern "C" fn(_: *mut JSObject) -> bool>

Trait Implementations§

source§

impl Clone for ProxyTraps

source§

fn clone(&self) -> ProxyTraps

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ProxyTraps

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for ProxyTraps

source§

fn default() -> ProxyTraps

Returns the “default value” for a type. Read more
source§

impl Copy for ProxyTraps

source§

impl Sync for ProxyTraps

Auto Trait Implementations§

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

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> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,

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
source§

impl<T> MaybeBoxed<Box<T, Global>> for T

source§

fn maybe_boxed(self) -> Box<T, Global>

Convert
source§

impl<T> MaybeBoxed<T> for T

source§

fn maybe_boxed(self) -> T

Convert
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,

source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
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.
source§

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

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> Erased for T

source§

impl<T> ErasedDestructor for Twhere T: 'static,

source§

impl<T> MaybeSendSync for T

source§

impl<T> WasmNotSend for Twhere T: Send,

source§

impl<T> WasmNotSync for Twhere T: Sync,