Enum mozjs::jsapi::NukeReferencesFromTarget
source · #[repr(u32)]pub enum NukeReferencesFromTarget {
NukeAllReferences = 0,
NukeIncomingReferences = 1,
}
Variants§
Trait Implementations§
source§impl Clone for NukeReferencesFromTarget
impl Clone for NukeReferencesFromTarget
source§fn clone(&self) -> NukeReferencesFromTarget
fn clone(&self) -> NukeReferencesFromTarget
Returns a copy 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 NukeReferencesFromTarget
impl Debug for NukeReferencesFromTarget
source§impl Hash for NukeReferencesFromTarget
impl Hash for NukeReferencesFromTarget
source§impl PartialEq for NukeReferencesFromTarget
impl PartialEq for NukeReferencesFromTarget
impl Copy for NukeReferencesFromTarget
impl Eq for NukeReferencesFromTarget
impl StructuralPartialEq for NukeReferencesFromTarget
Auto Trait Implementations§
impl Freeze for NukeReferencesFromTarget
impl RefUnwindSafe for NukeReferencesFromTarget
impl Send for NukeReferencesFromTarget
impl Sync for NukeReferencesFromTarget
impl Unpin for NukeReferencesFromTarget
impl UnwindSafe for NukeReferencesFromTarget
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more