pub(crate) type AesKeyAlgorithm = AesKeyAlgorithm;
Aliased Type§
struct AesKeyAlgorithm {
pub(crate) parent: KeyAlgorithm,
pub(crate) length: u16,
}
Fields§
§parent: KeyAlgorithm
§length: u16
Implementations
Source§impl AesKeyAlgorithm
impl AesKeyAlgorithm
pub(crate) fn new( cx: SafeJSContext, val: HandleValue<'_>, ) -> Result<ConversionResult<AesKeyAlgorithm>, ()>
Source§impl AesKeyAlgorithm
impl AesKeyAlgorithm
pub(crate) unsafe fn to_jsobject( &self, cx: *mut JSContext, obj: MutableHandleObject<'_>, )
Trait Implementations
Source§impl AlgorithmFromNameAndSize for AesKeyAlgorithm
impl AlgorithmFromNameAndSize for AesKeyAlgorithm
Source§fn from_name_and_size(
name: DOMString,
size: u16,
out: MutableHandleObject<'_>,
cx: JSContext,
)
fn from_name_and_size( name: DOMString, size: u16, out: MutableHandleObject<'_>, cx: JSContext, )
Fill the object referenced by out
with an AesKeyAlgorithm
of the specified name and size.
Source§impl FromJSValConvertible for AesKeyAlgorithm
impl FromJSValConvertible for AesKeyAlgorithm
Source§unsafe fn from_jsval(
cx: *mut JSContext,
value: HandleValue<'_>,
_option: (),
) -> Result<ConversionResult<AesKeyAlgorithm>, ()>
unsafe fn from_jsval( cx: *mut JSContext, value: HandleValue<'_>, _option: (), ) -> Result<ConversionResult<AesKeyAlgorithm>, ()>
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.