[][src]Struct rusty_v8::PropertyCallbackInfo

#[repr(C)]
pub struct PropertyCallbackInfo(_);

The information passed to a property callback about the context of the property access.

Methods

impl PropertyCallbackInfo[src]

pub fn get_return_value(&self) -> ReturnValue[src]

\return The return value of the callback. Can be changed by calling Set(). \code info.GetReturnValue().Set(...) \endcode

pub fn get_isolate(&mut self) -> &mut Isolate[src]

The isolate of the property access.

pub fn this(&self) -> Local<Object>[src]

\return The receiver. In many cases, this is the object on which the property access was intercepted. When using Reflect.get, Function.prototype.call, or similar functions, it is the object passed in as receiver or thisArg.

Trait Implementations

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.