pub struct EffectiveEnvelope {
pub scopes: Vec<String>,
pub safety: Safety,
pub active: bool,
}Expand description
Minimal effective envelope result used by activation code.
Fields§
§scopes: Vec<String>Intersected executable scopes.
safety: SafetyEffective safety.
active: boolWhether the referenced tool is active.
Trait Implementations§
Source§impl Clone for EffectiveEnvelope
impl Clone for EffectiveEnvelope
Source§fn clone(&self) -> EffectiveEnvelope
fn clone(&self) -> EffectiveEnvelope
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 EffectiveEnvelope
impl Debug for EffectiveEnvelope
impl Eq for EffectiveEnvelope
Source§impl PartialEq for EffectiveEnvelope
impl PartialEq for EffectiveEnvelope
impl StructuralPartialEq for EffectiveEnvelope
Auto Trait Implementations§
impl Freeze for EffectiveEnvelope
impl RefUnwindSafe for EffectiveEnvelope
impl Send for EffectiveEnvelope
impl Sync for EffectiveEnvelope
impl Unpin for EffectiveEnvelope
impl UnsafeUnpin for EffectiveEnvelope
impl UnwindSafe for EffectiveEnvelope
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.