#[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,
pub snapshot_is_dontneed_safe: bool,
pub branch_coverage: bool,
}Fields§
§version: i32§enable_asserts: bool§use_field_guards: bool§use_osr: bool§obfuscate: bool§load_vmservice_library: bool§copy_parent_code: bool§null_safety: bool§is_system_isolate: bool§snapshot_is_dontneed_safe: bool§branch_coverage: boolTrait Implementations§
Source§impl Clone for Dart_IsolateFlags
impl Clone for Dart_IsolateFlags
Source§fn clone(&self) -> Dart_IsolateFlags
fn clone(&self) -> Dart_IsolateFlags
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Dart_IsolateFlags
impl Debug for Dart_IsolateFlags
impl Copy for Dart_IsolateFlags
Auto Trait Implementations§
impl Freeze for Dart_IsolateFlags
impl RefUnwindSafe for Dart_IsolateFlags
impl Send for Dart_IsolateFlags
impl Sync for Dart_IsolateFlags
impl Unpin for Dart_IsolateFlags
impl UnwindSafe for Dart_IsolateFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more