pub struct LineAttributionMap {
pub mappings: BTreeMap<String, Vec<(u32, u32)>>,
pub resolved_anchors: BTreeMap<(String, usize), u32>,
}Fields§
§mappings: BTreeMap<String, Vec<(u32, u32)>>§resolved_anchors: BTreeMap<(String, usize), u32>Trait Implementations§
Source§impl Clone for LineAttributionMap
impl Clone for LineAttributionMap
Source§fn clone(&self) -> LineAttributionMap
fn clone(&self) -> LineAttributionMap
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LineAttributionMap
impl Debug for LineAttributionMap
Source§impl Default for LineAttributionMap
impl Default for LineAttributionMap
Source§fn default() -> LineAttributionMap
fn default() -> LineAttributionMap
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LineAttributionMap
impl RefUnwindSafe for LineAttributionMap
impl Send for LineAttributionMap
impl Sync for LineAttributionMap
impl Unpin for LineAttributionMap
impl UnsafeUnpin for LineAttributionMap
impl UnwindSafe for LineAttributionMap
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