pub enum RawSubscript {
Indices(Vec<char>),
Ellipsis {
start: Vec<char>,
end: Vec<char>,
},
}
Variants§
Trait Implementations§
Source§impl Clone for RawSubscript
impl Clone for RawSubscript
Source§fn clone(&self) -> RawSubscript
fn clone(&self) -> RawSubscript
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 RawSubscript
impl Debug for RawSubscript
Source§impl Display for RawSubscript
impl Display for RawSubscript
Source§impl Hash for RawSubscript
impl Hash for RawSubscript
Source§impl PartialEq for RawSubscript
impl PartialEq for RawSubscript
impl Eq for RawSubscript
impl StructuralPartialEq for RawSubscript
Auto Trait Implementations§
impl Freeze for RawSubscript
impl RefUnwindSafe for RawSubscript
impl Send for RawSubscript
impl Sync for RawSubscript
impl Unpin for RawSubscript
impl UnwindSafe for RawSubscript
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