pub struct TakeOptions {
pub check_bounds: bool,
}Expand description
Options that define how take should behave
Fields§
§check_bounds: boolPerform 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§impl Debug for TakeOptions
impl Debug for TakeOptions
Auto Trait Implementations§
impl Freeze for TakeOptions
impl RefUnwindSafe for TakeOptions
impl Send for TakeOptions
impl Sync for TakeOptions
impl Unpin for TakeOptions
impl UnsafeUnpin for TakeOptions
impl UnwindSafe for TakeOptions
Blanket Implementations§
impl<T> Allocation for T
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