pub(crate) type GPUSamplerBindingLayout = GPUSamplerBindingLayout;
Aliased Type§
struct GPUSamplerBindingLayout {
pub(crate) type_: GPUSamplerBindingType,
}
Fields§
§type_: GPUSamplerBindingType
Implementations
Source§impl GPUSamplerBindingLayout
impl GPUSamplerBindingLayout
pub(crate) fn empty() -> Self
pub(crate) fn new( cx: SafeJSContext, val: HandleValue<'_>, ) -> Result<ConversionResult<GPUSamplerBindingLayout>, ()>
Source§impl GPUSamplerBindingLayout
impl GPUSamplerBindingLayout
pub(crate) unsafe fn to_jsobject( &self, cx: *mut JSContext, obj: MutableHandleObject<'_>, )
Trait Implementations
Source§impl Default for GPUSamplerBindingLayout
impl Default for GPUSamplerBindingLayout
Source§impl FromJSValConvertible for GPUSamplerBindingLayout
impl FromJSValConvertible for GPUSamplerBindingLayout
Source§unsafe fn from_jsval(
cx: *mut JSContext,
value: HandleValue<'_>,
_option: (),
) -> Result<ConversionResult<GPUSamplerBindingLayout>, ()>
unsafe fn from_jsval( cx: *mut JSContext, value: HandleValue<'_>, _option: (), ) -> Result<ConversionResult<GPUSamplerBindingLayout>, ()>
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.