pub struct TakeOptions {
pub check_bounds: bool,
}
Expand description
Options that define how take
should behave
Fields§
§check_bounds: bool
Perform bounds check before taking indices from values.
If enabled, an ArrowError
is returned if the indices are out of bounds.
If not enabled, and indices exceed bounds, the kernel will panic.
Trait Implementations§
Source§impl Clone for TakeOptions
impl Clone for TakeOptions
Source§fn clone(&self) -> TakeOptions
fn clone(&self) -> TakeOptions
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 TakeOptions
impl Debug for TakeOptions
Source§impl Default for TakeOptions
impl Default for TakeOptions
Source§fn default() -> TakeOptions
fn default() -> TakeOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TakeOptions
impl RefUnwindSafe for TakeOptions
impl Send for TakeOptions
impl Sync for TakeOptions
impl Unpin for TakeOptions
impl UnwindSafe for TakeOptions
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
)