pub struct Object { /* private fields */ }
dep_web_sys
only.Implementations§
Source§impl Object
impl Object
Source§impl Object
impl Object
Sourcepub fn assign3(
target: &Object,
source1: &Object,
source2: &Object,
source3: &Object,
) -> Object
Available on crate feature dep_js_sys
only.
pub fn assign3( target: &Object, source1: &Object, source2: &Object, source3: &Object, ) -> Object
dep_js_sys
only.The Object.assign()
method is used to copy the values of all enumerable
own properties from one or more source objects to a target object. It
will return the target object.
Source§impl Object
impl Object
Sourcepub fn constructor(&self) -> Function
Available on crate feature dep_js_sys
only.
pub fn constructor(&self) -> Function
dep_js_sys
only.The constructor property returns a reference to the Object
constructor
function that created the instance object.
Source§impl Object
impl Object
Source§impl Object
impl Object
Source§impl Object
impl Object
Sourcepub fn define_properties(obj: &Object, props: &Object) -> Object
Available on crate feature dep_js_sys
only.
pub fn define_properties(obj: &Object, props: &Object) -> Object
dep_js_sys
only.The Object.defineProperties()
method defines new or modifies
existing properties directly on an object, returning the
object.
Source§impl Object
impl Object
Sourcepub fn entries(object: &Object) -> Array
Available on crate feature dep_js_sys
only.
pub fn entries(object: &Object) -> Array
dep_js_sys
only.The Object.entries()
method returns an array of a given
object’s own enumerable property [key, value] pairs, in the
same order as that provided by a for…in loop (the difference
being that a for-in loop enumerates properties in the
prototype chain as well).
Source§impl Object
impl Object
Sourcepub fn freeze(value: &Object) -> Object
Available on crate feature dep_js_sys
only.
pub fn freeze(value: &Object) -> Object
dep_js_sys
only.The Object.freeze()
method freezes an object: that is, prevents new
properties from being added to it; prevents existing properties from
being removed; and prevents existing properties, or their enumerability,
configurability, or writability, from being changed, it also prevents
the prototype from being changed. The method returns the passed object.
Source§impl Object
impl Object
Source§impl Object
impl Object
Sourcepub fn get_own_property_descriptor(obj: &Object, prop: &JsValue) -> JsValue
Available on crate feature dep_js_sys
only.
pub fn get_own_property_descriptor(obj: &Object, prop: &JsValue) -> JsValue
dep_js_sys
only.The Object.getOwnPropertyDescriptor()
method returns a
property descriptor for an own property (that is, one directly
present on an object and not in the object’s prototype chain)
of a given object.
Source§impl Object
impl Object
Sourcepub fn get_own_property_descriptors(obj: &Object) -> JsValue
Available on crate feature dep_js_sys
only.
pub fn get_own_property_descriptors(obj: &Object) -> JsValue
dep_js_sys
only.The Object.getOwnPropertyDescriptors()
method returns all own
property descriptors of a given object.
Source§impl Object
impl Object
Sourcepub fn get_own_property_names(obj: &Object) -> Array
Available on crate feature dep_js_sys
only.
pub fn get_own_property_names(obj: &Object) -> Array
dep_js_sys
only.The Object.getOwnPropertyNames()
method returns an array of
all properties (including non-enumerable properties except for
those which use Symbol) found directly upon a given object.
Source§impl Object
impl Object
Sourcepub fn get_own_property_symbols(obj: &Object) -> Array
Available on crate feature dep_js_sys
only.
pub fn get_own_property_symbols(obj: &Object) -> Array
dep_js_sys
only.The Object.getOwnPropertySymbols()
method returns an array of
all symbol properties found directly upon a given object.
Source§impl Object
impl Object
Sourcepub fn get_prototype_of(obj: &JsValue) -> Object
Available on crate feature dep_js_sys
only.
pub fn get_prototype_of(obj: &JsValue) -> Object
dep_js_sys
only.The Object.getPrototypeOf()
method returns the prototype
(i.e. the value of the internal [[Prototype]] property) of the
specified object.
Source§impl Object
impl Object
Sourcepub fn has_own_property(&self, property: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn has_own_property(&self, property: &JsValue) -> bool
dep_js_sys
only.The hasOwnProperty()
method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
Source§impl Object
impl Object
Sourcepub fn is_extensible(object: &Object) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_extensible(object: &Object) -> bool
dep_js_sys
only.The Object.isExtensible()
method determines if an object is extensible
(whether it can have new properties added to it).
Source§impl Object
impl Object
Source§impl Object
impl Object
Source§impl Object
impl Object
Sourcepub fn is_prototype_of(&self, value: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_prototype_of(&self, value: &JsValue) -> bool
dep_js_sys
only.The isPrototypeOf()
method checks if an object exists in another
object’s prototype chain.
Source§impl Object
impl Object
Source§impl Object
impl Object
Source§impl Object
impl Object
Sourcepub fn prevent_extensions(object: &Object)
Available on crate feature dep_js_sys
only.
pub fn prevent_extensions(object: &Object)
dep_js_sys
only.The Object.preventExtensions()
method prevents new properties from
ever being added to an object (i.e. prevents future extensions to the
object).
Source§impl Object
impl Object
Sourcepub fn property_is_enumerable(&self, property: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
dep_js_sys
only.The propertyIsEnumerable()
method returns a Boolean indicating
whether the specified property is enumerable.
Source§impl Object
impl Object
Sourcepub fn seal(value: &Object) -> Object
Available on crate feature dep_js_sys
only.
pub fn seal(value: &Object) -> Object
dep_js_sys
only.The Object.seal()
method seals an object, preventing new properties
from being added to it and marking all existing properties as
non-configurable. Values of present properties can still be changed as
long as they are writable.
Source§impl Object
impl Object
Sourcepub fn set_prototype_of(object: &Object, prototype: &Object) -> Object
Available on crate feature dep_js_sys
only.
pub fn set_prototype_of(object: &Object, prototype: &Object) -> Object
dep_js_sys
only.The Object.setPrototypeOf()
method sets the prototype (i.e., the
internal [[Prototype]]
property) of a specified object to another
object or null
.
Source§impl Object
impl Object
Sourcepub fn to_locale_string(&self) -> JsString
Available on crate feature dep_js_sys
only.
pub fn to_locale_string(&self) -> JsString
dep_js_sys
only.The toLocaleString()
method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
Source§impl Object
impl Object
Source§impl Object
impl Object
Source§impl Object
impl Object
Sourcepub fn values(object: &Object) -> Array
Available on crate feature dep_js_sys
only.
pub fn values(object: &Object) -> Array
dep_js_sys
only.The Object.values()
method returns an array of a given object’s own
enumerable property values, in the same order as that provided by a
for...in
loop (the difference being that a for-in loop enumerates
properties in the prototype chain as well).
Methods from Deref<Target = JsValue>§
pub const NULL: JsValue
pub const UNDEFINED: JsValue
pub const TRUE: JsValue
pub const FALSE: JsValue
Sourcepub fn as_f64(&self) -> Option<f64> ⓘ
Available on crate feature dep_js_sys
only.
pub fn as_f64(&self) -> Option<f64> ⓘ
dep_js_sys
only.Returns the f64
value of this JS value if it’s an instance of a
number.
If this JS value is not an instance of a number then this returns
None
.
Sourcepub fn is_string(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_string(&self) -> bool
dep_js_sys
only.Tests whether this JS value is a JS string.
Sourcepub fn as_string(&self) -> Option<String> ⓘ
Available on crate feature dep_js_sys
only.
pub fn as_string(&self) -> Option<String> ⓘ
dep_js_sys
only.If this JS value is a string value, this function copies the JS string
value into Wasm linear memory, encoded as UTF-8, and returns it as a
Rust String
.
To avoid the copying and re-encoding, consider the
JsString::try_from()
function from js-sys
instead.
If this JS value is not an instance of a string or if it’s not valid
utf-8 then this returns None
.
§UTF-16 vs UTF-8
JavaScript strings in general are encoded as UTF-16, but Rust strings
are encoded as UTF-8. This can cause the Rust string to look a bit
different than the JS string sometimes. For more details see the
documentation about the str
type which contains a few
caveats about the encodings.
Sourcepub fn as_bool(&self) -> Option<bool> ⓘ
Available on crate feature dep_js_sys
only.
pub fn as_bool(&self) -> Option<bool> ⓘ
dep_js_sys
only.Returns the bool
value of this JS value if it’s an instance of a
boolean.
If this JS value is not an instance of a boolean then this returns
None
.
Sourcepub fn is_null(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_null(&self) -> bool
dep_js_sys
only.Tests whether this JS value is null
Sourcepub fn is_undefined(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_undefined(&self) -> bool
dep_js_sys
only.Tests whether this JS value is undefined
Sourcepub fn is_symbol(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_symbol(&self) -> bool
dep_js_sys
only.Tests whether the type of this JS value is symbol
Sourcepub fn is_object(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_object(&self) -> bool
dep_js_sys
only.Tests whether typeof self == "object" && self !== null
.
Sourcepub fn is_array(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_array(&self) -> bool
dep_js_sys
only.Tests whether this JS value is an instance of Array.
Sourcepub fn is_function(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_function(&self) -> bool
dep_js_sys
only.Tests whether the type of this JS value is function
.
Sourcepub fn is_bigint(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_bigint(&self) -> bool
dep_js_sys
only.Tests whether the type of this JS value is bigint
.
Sourcepub fn js_typeof(&self) -> JsValue
Available on crate feature dep_js_sys
only.
pub fn js_typeof(&self) -> JsValue
dep_js_sys
only.Applies the unary typeof
JS operator on a JsValue
.
Sourcepub fn js_in(&self, obj: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn js_in(&self, obj: &JsValue) -> bool
dep_js_sys
only.Applies the binary in
JS operator on the two JsValue
s.
Sourcepub fn is_truthy(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_truthy(&self) -> bool
dep_js_sys
only.Tests whether the value is “truthy”.
Sourcepub fn is_falsy(&self) -> bool
Available on crate feature dep_js_sys
only.
pub fn is_falsy(&self) -> bool
dep_js_sys
only.Tests whether the value is “falsy”.
Sourcepub fn loose_eq(&self, other: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn loose_eq(&self, other: &JsValue) -> bool
dep_js_sys
only.Compare two JsValue
s for equality, using the ==
operator in JS.
Sourcepub fn bit_not(&self) -> JsValue
Available on crate feature dep_js_sys
only.
pub fn bit_not(&self) -> JsValue
dep_js_sys
only.Applies the unary ~
JS operator on a JsValue
.
Sourcepub fn unsigned_shr(&self, rhs: &JsValue) -> u32 ⓘ
Available on crate feature dep_js_sys
only.
pub fn unsigned_shr(&self, rhs: &JsValue) -> u32 ⓘ
dep_js_sys
only.Applies the binary >>>
JS operator on the two JsValue
s.
Sourcepub fn checked_div(&self, rhs: &JsValue) -> JsValue
Available on crate feature dep_js_sys
only.
pub fn checked_div(&self, rhs: &JsValue) -> JsValue
dep_js_sys
only.Applies the binary /
JS operator on two JsValue
s, catching and returning any RangeError
thrown.
Sourcepub fn pow(&self, rhs: &JsValue) -> JsValue
Available on crate feature dep_js_sys
only.
pub fn pow(&self, rhs: &JsValue) -> JsValue
dep_js_sys
only.Applies the binary **
JS operator on the two JsValue
s.
Sourcepub fn lt(&self, other: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn lt(&self, other: &JsValue) -> bool
dep_js_sys
only.Applies the binary <
JS operator on the two JsValue
s.
Sourcepub fn le(&self, other: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn le(&self, other: &JsValue) -> bool
dep_js_sys
only.Applies the binary <=
JS operator on the two JsValue
s.
Sourcepub fn ge(&self, other: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn ge(&self, other: &JsValue) -> bool
dep_js_sys
only.Applies the binary >=
JS operator on the two JsValue
s.
Sourcepub fn gt(&self, other: &JsValue) -> bool
Available on crate feature dep_js_sys
only.
pub fn gt(&self, other: &JsValue) -> bool
dep_js_sys
only.Applies the binary >
JS operator on the two JsValue
s.
Sourcepub fn unchecked_into_f64(&self) -> f64 ⓘ
Available on crate feature dep_js_sys
only.
pub fn unchecked_into_f64(&self) -> f64 ⓘ
dep_js_sys
only.Applies the unary +
JS operator on a JsValue
. Can throw.
Trait Implementations§
Source§impl AsRef<Object> for ArrayBuffer
impl AsRef<Object> for ArrayBuffer
Source§impl AsRef<Object> for BigInt64Array
impl AsRef<Object> for BigInt64Array
Source§impl AsRef<Object> for BigUint64Array
impl AsRef<Object> for BigUint64Array
Source§impl AsRef<Object> for DateTimeFormat
impl AsRef<Object> for DateTimeFormat
Source§impl AsRef<Object> for Float32Array
impl AsRef<Object> for Float32Array
Source§impl AsRef<Object> for Float64Array
impl AsRef<Object> for Float64Array
Source§impl AsRef<Object> for Int16Array
impl AsRef<Object> for Int16Array
Source§impl AsRef<Object> for Int32Array
impl AsRef<Object> for Int32Array
Source§impl AsRef<Object> for IteratorNext
impl AsRef<Object> for IteratorNext
Source§impl AsRef<Object> for NumberFormat
impl AsRef<Object> for NumberFormat
Source§impl AsRef<Object> for PluralRules
impl AsRef<Object> for PluralRules
Source§impl AsRef<Object> for RangeError
impl AsRef<Object> for RangeError
Source§impl AsRef<Object> for ReferenceError
impl AsRef<Object> for ReferenceError
Source§impl AsRef<Object> for RelativeTimeFormat
impl AsRef<Object> for RelativeTimeFormat
Source§impl AsRef<Object> for SyntaxError
impl AsRef<Object> for SyntaxError
Source§impl AsRef<Object> for Uint16Array
impl AsRef<Object> for Uint16Array
Source§impl AsRef<Object> for Uint32Array
impl AsRef<Object> for Uint32Array
Source§impl AsRef<Object> for Uint8Array
impl AsRef<Object> for Uint8Array
Source§impl AsRef<Object> for Uint8ClampedArray
impl AsRef<Object> for Uint8ClampedArray
Source§impl From<ArrayBuffer> for Object
impl From<ArrayBuffer> for Object
Source§fn from(obj: ArrayBuffer) -> Object
fn from(obj: ArrayBuffer) -> Object
Source§impl From<BigInt64Array> for Object
impl From<BigInt64Array> for Object
Source§fn from(obj: BigInt64Array) -> Object
fn from(obj: BigInt64Array) -> Object
Source§impl From<BigUint64Array> for Object
impl From<BigUint64Array> for Object
Source§fn from(obj: BigUint64Array) -> Object
fn from(obj: BigUint64Array) -> Object
Source§impl From<DateTimeFormat> for Object
impl From<DateTimeFormat> for Object
Source§fn from(obj: DateTimeFormat) -> Object
fn from(obj: DateTimeFormat) -> Object
Source§impl From<Float32Array> for Object
impl From<Float32Array> for Object
Source§fn from(obj: Float32Array) -> Object
fn from(obj: Float32Array) -> Object
Source§impl From<Float64Array> for Object
impl From<Float64Array> for Object
Source§fn from(obj: Float64Array) -> Object
fn from(obj: Float64Array) -> Object
Source§impl From<Int16Array> for Object
impl From<Int16Array> for Object
Source§fn from(obj: Int16Array) -> Object
fn from(obj: Int16Array) -> Object
Source§impl From<Int32Array> for Object
impl From<Int32Array> for Object
Source§fn from(obj: Int32Array) -> Object
fn from(obj: Int32Array) -> Object
Source§impl From<IteratorNext> for Object
impl From<IteratorNext> for Object
Source§fn from(obj: IteratorNext) -> Object
fn from(obj: IteratorNext) -> Object
Source§impl From<NumberFormat> for Object
impl From<NumberFormat> for Object
Source§fn from(obj: NumberFormat) -> Object
fn from(obj: NumberFormat) -> Object
Source§impl From<PluralRules> for Object
impl From<PluralRules> for Object
Source§fn from(obj: PluralRules) -> Object
fn from(obj: PluralRules) -> Object
Source§impl From<RangeError> for Object
impl From<RangeError> for Object
Source§fn from(obj: RangeError) -> Object
fn from(obj: RangeError) -> Object
Source§impl From<ReferenceError> for Object
impl From<ReferenceError> for Object
Source§fn from(obj: ReferenceError) -> Object
fn from(obj: ReferenceError) -> Object
Source§impl From<RelativeTimeFormat> for Object
impl From<RelativeTimeFormat> for Object
Source§fn from(obj: RelativeTimeFormat) -> Object
fn from(obj: RelativeTimeFormat) -> Object
Source§fn from(obj: SharedArrayBuffer) -> Object
fn from(obj: SharedArrayBuffer) -> Object
Source§impl From<SyntaxError> for Object
impl From<SyntaxError> for Object
Source§fn from(obj: SyntaxError) -> Object
fn from(obj: SyntaxError) -> Object
Source§impl From<Uint16Array> for Object
impl From<Uint16Array> for Object
Source§fn from(obj: Uint16Array) -> Object
fn from(obj: Uint16Array) -> Object
Source§impl From<Uint32Array> for Object
impl From<Uint32Array> for Object
Source§fn from(obj: Uint32Array) -> Object
fn from(obj: Uint32Array) -> Object
Source§impl From<Uint8Array> for Object
impl From<Uint8Array> for Object
Source§fn from(obj: Uint8Array) -> Object
fn from(obj: Uint8Array) -> Object
Source§impl From<Uint8ClampedArray> for Object
impl From<Uint8ClampedArray> for Object
Source§fn from(obj: Uint8ClampedArray) -> Object
fn from(obj: Uint8ClampedArray) -> Object
Source§impl FromWasmAbi for Object
impl FromWasmAbi for Object
Source§impl<'a> IntoWasmAbi for &'a Object
impl<'a> IntoWasmAbi for &'a Object
Source§impl IntoWasmAbi for Object
impl IntoWasmAbi for Object
Source§impl JsCast for Object
impl JsCast for Object
Source§fn instanceof(val: &JsValue) -> bool
fn instanceof(val: &JsValue) -> bool
instanceof
check to see whether the JsValue
provided is an instance of this type. Read moreSource§fn unchecked_from_js(val: JsValue) -> Object
fn unchecked_from_js(val: JsValue) -> Object
Source§fn unchecked_from_js_ref(val: &JsValue) -> &Object
fn unchecked_from_js_ref(val: &JsValue) -> &Object
Source§fn has_type<T>(&self) -> boolwhere
T: JsCast,
fn has_type<T>(&self) -> boolwhere
T: JsCast,
T
. Read moreSource§fn dyn_into<T>(self) -> Result<T, Self> ⓘwhere
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self> ⓘwhere
T: JsCast,
T
. Read moreSource§fn dyn_ref<T>(&self) -> Option<&T> ⓘwhere
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T> ⓘwhere
T: JsCast,
T
. Read moreSource§fn unchecked_into<T>(self) -> Twhere
T: JsCast,
fn unchecked_into<T>(self) -> Twhere
T: JsCast,
Source§fn unchecked_ref<T>(&self) -> &Twhere
T: JsCast,
fn unchecked_ref<T>(&self) -> &Twhere
T: JsCast,
Source§impl LongRefFromWasmAbi for Object
impl LongRefFromWasmAbi for Object
Source§unsafe fn long_ref_from_abi(
js: <Object as LongRefFromWasmAbi>::Abi,
) -> <Object as LongRefFromWasmAbi>::Anchor
unsafe fn long_ref_from_abi( js: <Object as LongRefFromWasmAbi>::Abi, ) -> <Object as LongRefFromWasmAbi>::Anchor
RefFromWasmAbi::ref_from_abi
Source§impl OptionFromWasmAbi for Object
impl OptionFromWasmAbi for Object
Source§impl<'a> OptionIntoWasmAbi for &'a Object
impl<'a> OptionIntoWasmAbi for &'a Object
Source§impl OptionIntoWasmAbi for Object
impl OptionIntoWasmAbi for Object
Source§impl RefFromWasmAbi for Object
impl RefFromWasmAbi for Object
Source§type Abi = <JsValue as RefFromWasmAbi>::Abi
type Abi = <JsValue as RefFromWasmAbi>::Abi
Self
are recovered from.Source§type Anchor = ManuallyDrop<Object>
type Anchor = ManuallyDrop<Object>
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§unsafe fn ref_from_abi(
js: <Object as RefFromWasmAbi>::Abi,
) -> <Object as RefFromWasmAbi>::Anchor
unsafe fn ref_from_abi( js: <Object as RefFromWasmAbi>::Abi, ) -> <Object as RefFromWasmAbi>::Anchor
impl Eq for Object
Auto Trait Implementations§
impl Freeze for Object
impl RefUnwindSafe for Object
impl !Send for Object
impl !Sync for Object
impl Unpin for Object
impl UnwindSafe for Object
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize ⓘ
fn byte_align(&self) -> usize ⓘ
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of_val(&self) -> usize ⓘ
fn mem_align_of_val(&self) -> usize ⓘ
Source§fn mem_size_of_val(&self) -> usize ⓘ
fn mem_size_of_val(&self) -> usize ⓘ
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out
indicating that a T
is niched.§impl<T> Pointable for T
impl<T> Pointable for T
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
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.