pub struct RemovePassword { /* private fields */ }
Implementations§
Source§impl RemovePassword
impl RemovePassword
pub fn new( kind: JsString, origin: Option<JsString>, password: Option<JsString>, realm: Option<JsString>, scheme: Option<JsString>, username: Option<JsString>, ) -> RemovePassword
pub fn kind(&self) -> JsString
pub fn set_kind(&mut self, value: JsString)
pub fn origin(&self) -> Option<JsString>
pub fn set_origin(&mut self, value: Option<JsString>)
pub fn password(&self) -> Option<JsString>
pub fn set_password(&mut self, value: Option<JsString>)
pub fn realm(&self) -> Option<JsString>
pub fn set_realm(&mut self, value: Option<JsString>)
pub fn scheme(&self) -> Option<JsString>
pub fn set_scheme(&mut self, value: Option<JsString>)
pub fn username(&self) -> Option<JsString>
pub fn set_username(&mut self, value: Option<JsString>)
Trait Implementations§
Source§impl Clone for RemovePassword
impl Clone for RemovePassword
Source§fn clone(&self) -> RemovePassword
fn clone(&self) -> RemovePassword
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RemovePassword
impl Debug for RemovePassword
Source§impl From<RemovePassword> for JsValue
impl From<RemovePassword> for JsValue
Source§fn from(value: RemovePassword) -> Self
fn from(value: RemovePassword) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for RemovePassword
impl FromWasmAbi for RemovePassword
Source§impl IntoWasmAbi for RemovePassword
impl IntoWasmAbi for RemovePassword
Source§impl LongRefFromWasmAbi for RemovePassword
impl LongRefFromWasmAbi for RemovePassword
Source§impl OptionFromWasmAbi for RemovePassword
impl OptionFromWasmAbi for RemovePassword
Source§impl OptionIntoWasmAbi for RemovePassword
impl OptionIntoWasmAbi for RemovePassword
Source§impl PartialEq for RemovePassword
impl PartialEq for RemovePassword
Source§impl RefFromWasmAbi for RemovePassword
impl RefFromWasmAbi for RemovePassword
Source§type Anchor = RcRef<RemovePassword>
type Anchor = RcRef<RemovePassword>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl RefMutFromWasmAbi for RemovePassword
impl RefMutFromWasmAbi for RemovePassword
Source§impl TryFromJsValue for RemovePassword
impl TryFromJsValue for RemovePassword
Source§impl VectorFromWasmAbi for RemovePassword
impl VectorFromWasmAbi for RemovePassword
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[RemovePassword]>
Source§impl VectorIntoJsValue for RemovePassword
impl VectorIntoJsValue for RemovePassword
fn vector_into_jsvalue(vector: Box<[RemovePassword]>) -> JsValue
Source§impl VectorIntoWasmAbi for RemovePassword
impl VectorIntoWasmAbi for RemovePassword
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[RemovePassword]>) -> Self::Abi
Source§impl WasmDescribeVector for RemovePassword
impl WasmDescribeVector for RemovePassword
impl StructuralPartialEq for RemovePassword
impl SupportsConstructor for RemovePassword
impl SupportsInstanceProperty for RemovePassword
impl SupportsStaticProperty for RemovePassword
Auto Trait Implementations§
impl Freeze for RemovePassword
impl RefUnwindSafe for RemovePassword
impl !Send for RemovePassword
impl !Sync for RemovePassword
impl Unpin for RemovePassword
impl UnwindSafe for RemovePassword
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.