pub struct BoundedMapping {
pub mapping: Mapping,
pub start_column: u32,
pub end_column: u32,
}Expand description
A mapping with bounds information for efficient lookup.
Fields§
§mapping: MappingThe mapping.
start_column: u32The start column of the generated range.
end_column: u32The end column of the generated range (exclusive).
Implementations§
Trait Implementations§
Source§impl Clone for BoundedMapping
impl Clone for BoundedMapping
Source§fn clone(&self) -> BoundedMapping
fn clone(&self) -> BoundedMapping
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 moreSource§impl Debug for BoundedMapping
impl Debug for BoundedMapping
Source§impl PartialEq for BoundedMapping
impl PartialEq for BoundedMapping
impl Eq for BoundedMapping
impl StructuralPartialEq for BoundedMapping
Auto Trait Implementations§
impl Freeze for BoundedMapping
impl RefUnwindSafe for BoundedMapping
impl Send for BoundedMapping
impl Sync for BoundedMapping
impl Unpin for BoundedMapping
impl UnsafeUnpin for BoundedMapping
impl UnwindSafe for BoundedMapping
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