pub enum ScopeBlockInfo {
Begin {
scope: ScopeId,
pruned: bool,
fallthrough: BlockId,
},
End {
scope: ScopeId,
pruned: bool,
},
}Expand description
Block info entry for ScopeBlockTraversal.
Variants§
Trait Implementations§
Source§impl Clone for ScopeBlockInfo
impl Clone for ScopeBlockInfo
Source§fn clone(&self) -> ScopeBlockInfo
fn clone(&self) -> ScopeBlockInfo
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 ScopeBlockInfo
impl RefUnwindSafe for ScopeBlockInfo
impl Send for ScopeBlockInfo
impl Sync for ScopeBlockInfo
impl Unpin for ScopeBlockInfo
impl UnsafeUnpin for ScopeBlockInfo
impl UnwindSafe for ScopeBlockInfo
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