pub trait CryptoMethods<D: DomTypes> {
// Required methods
fn Subtle(&self, _can_gc: CanGc) -> DomRoot<D::SubtleCrypto>;
fn GetRandomValues(
&self,
cx: SafeJSContext,
array: CustomAutoRooterGuard<'_, ArrayBufferView>,
) -> Fallible<ArrayBufferView>;
fn RandomUUID(&self) -> DOMString;
}