pub struct Uint32Array<T>(pub T);
Expand description
Wrapper for converting between a Rust [u32]
array type and a JsUint32Array
Tuple Fields§
§0: T
Trait Implementations§
Source§impl<'cx, T> TryFromJs<'cx> for Uint32Array<T>
impl<'cx, T> TryFromJs<'cx> for Uint32Array<T>
type Error = TypeExpected<JsTypedArray<u32>>
Source§fn try_from_js(
cx: &mut Cx<'cx>,
v: Handle<'cx, JsValue>,
) -> NeonResult<Result<Self, Self::Error>>
fn try_from_js( cx: &mut Cx<'cx>, v: Handle<'cx, JsValue>, ) -> NeonResult<Result<Self, Self::Error>>
Extract this Rust type from a JavaScript value
Auto Trait Implementations§
impl<T> Freeze for Uint32Array<T>where
T: Freeze,
impl<T> RefUnwindSafe for Uint32Array<T>where
T: RefUnwindSafe,
impl<T> Send for Uint32Array<T>where
T: Send,
impl<T> Sync for Uint32Array<T>where
T: Sync,
impl<T> Unpin for Uint32Array<T>where
T: Unpin,
impl<T> UnwindSafe for Uint32Array<T>where
T: UnwindSafe,
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> 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