pub enum GenericObjectIndex {
Wildcard,
Slice(LinkedList<Slicer>),
}
Variants
Wildcard
Slice(LinkedList<Slicer>)
Trait Implementations
sourceimpl Clone for GenericObjectIndex
impl Clone for GenericObjectIndex
sourcefn clone(&self) -> GenericObjectIndex
fn clone(&self) -> GenericObjectIndex
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GenericObjectIndex
impl Debug for GenericObjectIndex
sourceimpl MacroFormat for GenericObjectIndex
impl MacroFormat for GenericObjectIndex
sourceimpl PartialEq<GenericObjectIndex> for GenericObjectIndex
impl PartialEq<GenericObjectIndex> for GenericObjectIndex
sourcefn eq(&self, other: &GenericObjectIndex) -> bool
fn eq(&self, other: &GenericObjectIndex) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GenericObjectIndex) -> bool
fn ne(&self, other: &GenericObjectIndex) -> bool
This method tests for !=
.
impl Eq for GenericObjectIndex
impl StructuralEq for GenericObjectIndex
impl StructuralPartialEq for GenericObjectIndex
Auto Trait Implementations
impl RefUnwindSafe for GenericObjectIndex
impl Send for GenericObjectIndex
impl Sync for GenericObjectIndex
impl Unpin for GenericObjectIndex
impl UnwindSafe for GenericObjectIndex
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more