Struct rusty_v8::ScriptOrigin[][src]

#[repr(C)]pub struct ScriptOrigin<'s>(_, _);

The origin, within a file, of a script.

Implementations

impl<'s> ScriptOrigin<'s>[src]

The origin, within a file, of a script.

pub fn new(
    scope: &mut HandleScope<'s, ()>,
    resource_name: Local<'s, Value>,
    resource_line_offset: i32,
    resource_column_offset: i32,
    resource_is_shared_cross_origin: bool,
    script_id: i32,
    source_map_url: Local<'s, Value>,
    resource_is_opaque: bool,
    is_wasm: bool,
    is_module: bool
) -> Self
[src]

Trait Implementations

impl<'s> Debug for ScriptOrigin<'s>[src]

Auto Trait Implementations

impl<'s> RefUnwindSafe for ScriptOrigin<'s>

impl<'s> Send for ScriptOrigin<'s>

impl<'s> Sync for ScriptOrigin<'s>

impl<'s> Unpin for ScriptOrigin<'s>

impl<'s> UnwindSafe for ScriptOrigin<'s>

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.