pub struct ScopeEntry {
pub scope: Scope,
pub config: usize,
pub local: usize,
}Expand description
One scope from a ConfigSet, with its position in the set: which
config it belongs to and its index within that config.
Fields§
§scope: ScopeThe scope itself.
config: usizeIndex into ConfigSet::configs.
local: usizeThe scope’s index within its own config.
Trait Implementations§
Source§impl Clone for ScopeEntry
impl Clone for ScopeEntry
Auto Trait Implementations§
impl Freeze for ScopeEntry
impl RefUnwindSafe for ScopeEntry
impl Send for ScopeEntry
impl Sync for ScopeEntry
impl Unpin for ScopeEntry
impl UnsafeUnpin for ScopeEntry
impl UnwindSafe for ScopeEntry
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