Enum einsum_codegen::parser::RawSubscript
source · 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 copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
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<const N: usize> PartialEq<[char; N]> for RawSubscript
impl<const N: usize> PartialEq<[char; N]> for RawSubscript
source§impl PartialEq for RawSubscript
impl PartialEq for RawSubscript
source§fn eq(&self, other: &RawSubscript) -> bool
fn eq(&self, other: &RawSubscript) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RawSubscript
impl StructuralPartialEq for RawSubscript
Auto Trait Implementations§
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