pub struct LinearizedSym {
pub fid: i32,
pub table: Vec<Vec<Sym>>,
}
Expand description
Linearized symbol row.
Represents a row in the linearization table with FId and symbol tables.
Fields§
§fid: i32
FId.
table: Vec<Vec<Sym>>
Table of symbols.
Trait Implementations§
Source§impl Clone for LinearizedSym
impl Clone for LinearizedSym
Source§fn clone(&self) -> LinearizedSym
fn clone(&self) -> LinearizedSym
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for LinearizedSym
impl RefUnwindSafe for LinearizedSym
impl Send for LinearizedSym
impl Sync for LinearizedSym
impl Unpin for LinearizedSym
impl UnwindSafe for LinearizedSym
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