Struct dart_sdk_sys::Dart_IsolateFlags[][src]

#[repr(C)]pub struct Dart_IsolateFlags {
    pub version: i32,
    pub enable_asserts: bool,
    pub use_field_guards: bool,
    pub use_osr: bool,
    pub obfuscate: bool,
    pub load_vmservice_library: bool,
    pub copy_parent_code: bool,
    pub null_safety: bool,
    pub is_system_isolate: bool,
}

Fields

version: i32enable_asserts: booluse_field_guards: booluse_osr: boolobfuscate: boolload_vmservice_library: boolcopy_parent_code: boolnull_safety: boolis_system_isolate: bool

Trait Implementations

impl Clone for Dart_IsolateFlags[src]

impl Copy for Dart_IsolateFlags[src]

impl Debug for Dart_IsolateFlags[src]

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.