web_sys/features/
gen_CredentialCreationOptions.rs#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = CredentialCreationOptions)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `CredentialCreationOptions` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CredentialCreationOptions`*"]
pub type CredentialCreationOptions;
#[cfg(feature = "PublicKeyCredentialCreationOptions")]
#[doc = "Get the `publicKey` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CredentialCreationOptions`, `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "publicKey")]
pub fn get_public_key(
this: &CredentialCreationOptions,
) -> Option<PublicKeyCredentialCreationOptions>;
#[cfg(feature = "PublicKeyCredentialCreationOptions")]
#[doc = "Change the `publicKey` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CredentialCreationOptions`, `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "publicKey")]
pub fn set_public_key(
this: &CredentialCreationOptions,
val: &PublicKeyCredentialCreationOptions,
);
#[cfg(feature = "AbortSignal")]
#[doc = "Get the `signal` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AbortSignal`, `CredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "signal")]
pub fn get_signal(this: &CredentialCreationOptions) -> Option<AbortSignal>;
#[cfg(feature = "AbortSignal")]
#[doc = "Change the `signal` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AbortSignal`, `CredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "signal")]
pub fn set_signal(this: &CredentialCreationOptions, val: &AbortSignal);
}
impl CredentialCreationOptions {
#[doc = "Construct a new `CredentialCreationOptions`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CredentialCreationOptions`*"]
pub fn new() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[cfg(feature = "PublicKeyCredentialCreationOptions")]
#[deprecated = "Use `set_public_key()` instead."]
pub fn public_key(&mut self, val: &PublicKeyCredentialCreationOptions) -> &mut Self {
self.set_public_key(val);
self
}
#[cfg(feature = "AbortSignal")]
#[deprecated = "Use `set_signal()` instead."]
pub fn signal(&mut self, val: &AbortSignal) -> &mut Self {
self.set_signal(val);
self
}
}
impl Default for CredentialCreationOptions {
fn default() -> Self {
Self::new()
}
}