pub struct BooleanArray(/* private fields */);
Implementations§
Source§impl BooleanArray
impl BooleanArray
pub fn to_ffi(&self) -> FFIArrowArray
Trait Implementations§
Source§impl From<BooleanArray> for JsValue
impl From<BooleanArray> for JsValue
Source§fn from(value: BooleanArray) -> Self
fn from(value: BooleanArray) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for BooleanArray
impl FromWasmAbi for BooleanArray
Source§impl IntoWasmAbi for BooleanArray
impl IntoWasmAbi for BooleanArray
Source§impl LongRefFromWasmAbi for BooleanArray
impl LongRefFromWasmAbi for BooleanArray
Source§impl OptionFromWasmAbi for BooleanArray
impl OptionFromWasmAbi for BooleanArray
Source§impl OptionIntoWasmAbi for BooleanArray
impl OptionIntoWasmAbi for BooleanArray
Source§impl RefFromWasmAbi for BooleanArray
impl RefFromWasmAbi for BooleanArray
Source§type Anchor = RcRef<BooleanArray>
type Anchor = RcRef<BooleanArray>
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 BooleanArray
impl RefMutFromWasmAbi for BooleanArray
Source§impl TryFromJsValue for BooleanArray
impl TryFromJsValue for BooleanArray
Source§impl VectorFromWasmAbi for BooleanArray
impl VectorFromWasmAbi for BooleanArray
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[BooleanArray]>
Source§impl VectorIntoJsValue for BooleanArray
impl VectorIntoJsValue for BooleanArray
fn vector_into_jsvalue(vector: Box<[BooleanArray]>) -> JsValue
Source§impl VectorIntoWasmAbi for BooleanArray
impl VectorIntoWasmAbi for BooleanArray
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[BooleanArray]>) -> Self::Abi
Source§impl WasmDescribeVector for BooleanArray
impl WasmDescribeVector for BooleanArray
impl SupportsConstructor for BooleanArray
impl SupportsInstanceProperty for BooleanArray
impl SupportsStaticProperty for BooleanArray
Auto Trait Implementations§
impl Freeze for BooleanArray
impl RefUnwindSafe for BooleanArray
impl Send for BooleanArray
impl Sync for BooleanArray
impl Unpin for BooleanArray
impl UnwindSafe for BooleanArray
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 moreSource§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
.