pub(crate) type ValidityStateFlags = ValidityStateFlags;
Aliased Type§
struct ValidityStateFlags {
pub(crate) badInput: bool,
pub(crate) customError: bool,
pub(crate) patternMismatch: bool,
pub(crate) rangeOverflow: bool,
pub(crate) rangeUnderflow: bool,
pub(crate) stepMismatch: bool,
pub(crate) tooLong: bool,
pub(crate) tooShort: bool,
pub(crate) typeMismatch: bool,
pub(crate) valueMissing: bool,
}
Fields§
§badInput: bool
§customError: bool
§patternMismatch: bool
§rangeOverflow: bool
§rangeUnderflow: bool
§stepMismatch: bool
§tooLong: bool
§tooShort: bool
§typeMismatch: bool
§valueMissing: bool
Implementations
Source§impl ValidityStateFlags
impl ValidityStateFlags
pub(crate) unsafe fn to_jsobject( &self, cx: *mut JSContext, obj: MutableHandleObject<'_>, )
Source§impl ValidityStateFlags
impl ValidityStateFlags
pub(crate) fn empty() -> Self
pub(crate) fn new( cx: SafeJSContext, val: HandleValue<'_>, ) -> Result<ConversionResult<ValidityStateFlags>, ()>
Trait Implementations
Source§impl Default for ValidityStateFlags
impl Default for ValidityStateFlags
Source§impl FromJSValConvertible for ValidityStateFlags
impl FromJSValConvertible for ValidityStateFlags
Source§unsafe fn from_jsval(
cx: *mut JSContext,
value: HandleValue<'_>,
_option: (),
) -> Result<ConversionResult<ValidityStateFlags>, ()>
unsafe fn from_jsval( cx: *mut JSContext, value: HandleValue<'_>, _option: (), ) -> Result<ConversionResult<ValidityStateFlags>, ()>
Convert
val
to type Self
.
Optional configuration of type T
can be passed as the option
argument.
If it returns Err(())
, a JSAPI exception is pending.
If it returns Ok(Failure(reason))
, there is no pending JSAPI exception.