#[repr(u64)]pub enum NSDataSearchOptions {
SearchBackwards = 1,
SearchAnchored = 2,
}
Expand description
Options for method used to search data objects.
Variants§
SearchBackwards = 1
Search from the end of the data object.
SearchAnchored = 2
Search is limited to start (or end, if searching backwards) of the data object.
Trait Implementations§
Source§impl Clone for NSDataSearchOptions
impl Clone for NSDataSearchOptions
Source§fn clone(&self) -> NSDataSearchOptions
fn clone(&self) -> NSDataSearchOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NSDataSearchOptions
impl Debug for NSDataSearchOptions
impl Copy for NSDataSearchOptions
Auto Trait Implementations§
impl Freeze for NSDataSearchOptions
impl RefUnwindSafe for NSDataSearchOptions
impl Send for NSDataSearchOptions
impl Sync for NSDataSearchOptions
impl Unpin for NSDataSearchOptions
impl UnwindSafe for NSDataSearchOptions
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