Struct firebase_wasm::firestore::SetDocOptions
source · [−]Fields
merge: Option<bool>
Trait Implementations
sourceimpl From<SetDocOptions> for JsValue
impl From<SetDocOptions> for JsValue
sourcefn from(value: SetDocOptions) -> Self
fn from(value: SetDocOptions) -> Self
Converts to this type from the input type.
sourceimpl FromWasmAbi for SetDocOptions
impl FromWasmAbi for SetDocOptions
sourceimpl IntoWasmAbi for SetDocOptions
impl IntoWasmAbi for SetDocOptions
sourceimpl OptionFromWasmAbi for SetDocOptions
impl OptionFromWasmAbi for SetDocOptions
sourceimpl OptionIntoWasmAbi for SetDocOptions
impl OptionIntoWasmAbi for SetDocOptions
sourceimpl RefFromWasmAbi for SetDocOptions
impl RefFromWasmAbi for SetDocOptions
type Anchor = Ref<'static, SetDocOptions>
type Anchor = Ref<'static, SetDocOptions>
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. Read more
sourceunsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor
Recover a Self::Anchor
from Self::Abi
. Read more
sourceimpl RefMutFromWasmAbi for SetDocOptions
impl RefMutFromWasmAbi for SetDocOptions
type Anchor = RefMut<'static, SetDocOptions>
type Anchor = RefMut<'static, SetDocOptions>
Same as RefFromWasmAbi::Anchor
sourceunsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
Same as RefFromWasmAbi::ref_from_abi
sourceimpl WasmDescribe for SetDocOptions
impl WasmDescribe for SetDocOptions
Auto Trait Implementations
impl RefUnwindSafe for SetDocOptions
impl Send for SetDocOptions
impl Sync for SetDocOptions
impl Unpin for SetDocOptions
impl UnwindSafe for SetDocOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
sourcefn 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
. Read more