1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from webkit-gir-files
// DO NOT EDIT
use crate::ffi;
use glib::{bitflags::bitflags, translate::*};
bitflags! {
/// Flags used when defining properties with jsc_value_object_define_property_data() and
/// jsc_value_object_define_property_accessor().
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
#[doc(alias = "JSCValuePropertyFlags")]
pub struct ValuePropertyFlags: u32 {
/// the type of the property descriptor may be changed and the
/// property may be deleted from the corresponding object.
#[doc(alias = "JSC_VALUE_PROPERTY_CONFIGURABLE")]
const CONFIGURABLE = ffi::JSC_VALUE_PROPERTY_CONFIGURABLE as _;
/// the property shows up during enumeration of the properties on
/// the corresponding object.
#[doc(alias = "JSC_VALUE_PROPERTY_ENUMERABLE")]
const ENUMERABLE = ffi::JSC_VALUE_PROPERTY_ENUMERABLE as _;
/// the value associated with the property may be changed with an
/// assignment operator. This doesn't have any effect when passed to jsc_value_object_define_property_accessor().
#[doc(alias = "JSC_VALUE_PROPERTY_WRITABLE")]
const WRITABLE = ffi::JSC_VALUE_PROPERTY_WRITABLE as _;
}
}
#[doc(hidden)]
impl IntoGlib for ValuePropertyFlags {
type GlibType = ffi::JSCValuePropertyFlags;
#[inline]
fn into_glib(self) -> ffi::JSCValuePropertyFlags {
self.bits()
}
}
#[doc(hidden)]
impl FromGlib<ffi::JSCValuePropertyFlags> for ValuePropertyFlags {
#[inline]
unsafe fn from_glib(value: ffi::JSCValuePropertyFlags) -> Self {
skip_assert_initialized!();
Self::from_bits_truncate(value)
}
}