pub enum Label {
I64(i64),
Str(String),
}Expand description
A single row-index label: an integer / datetime (I64, ns) or a string
(Str). It decouples label lookup from the index’s storage so the same
.loc / .at / .loc[a:b] / drop paths serve every index kind.
Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for Label
Auto Trait Implementations§
impl Freeze for Label
impl RefUnwindSafe for Label
impl Send for Label
impl Sync for Label
impl Unpin for Label
impl UnsafeUnpin for Label
impl UnwindSafe for Label
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