pub struct BlockResolution {
pub anchor_line: u32,
pub start: u32,
pub end: u32,
pub op: BlockOp,
}Expand description
One block anchor resolution (block-ops feature — future).
Fields§
§anchor_line: u321-indexed line that named the block being resolved.
start: u32First line of the resolved block (inclusive).
end: u32Last line of the resolved block (inclusive).
op: BlockOpThe operation to perform on the resolved block.
Trait Implementations§
Source§impl Clone for BlockResolution
impl Clone for BlockResolution
Source§fn clone(&self) -> BlockResolution
fn clone(&self) -> BlockResolution
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 moreAuto Trait Implementations§
impl Freeze for BlockResolution
impl RefUnwindSafe for BlockResolution
impl Send for BlockResolution
impl Sync for BlockResolution
impl Unpin for BlockResolution
impl UnsafeUnpin for BlockResolution
impl UnwindSafe for BlockResolution
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