pub struct EffectiveTools {
pub tools: Vec<String>,
pub adjustments: Vec<Adjustment>,
}Expand description
Effective tool set and explanations for removed grants.
Fields§
§tools: Vec<String>Sorted, deduplicated tools allowed by both profile and harness.
adjustments: Vec<Adjustment>Explanations for requested tools that were removed.
Trait Implementations§
Source§impl Clone for EffectiveTools
impl Clone for EffectiveTools
Source§fn clone(&self) -> EffectiveTools
fn clone(&self) -> EffectiveTools
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 EffectiveTools
impl Debug for EffectiveTools
Source§impl<'de> Deserialize<'de> for EffectiveTools
impl<'de> Deserialize<'de> for EffectiveTools
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EffectiveTools
impl PartialEq for EffectiveTools
Source§impl Serialize for EffectiveTools
impl Serialize for EffectiveTools
impl StructuralPartialEq for EffectiveTools
Auto Trait Implementations§
impl Freeze for EffectiveTools
impl RefUnwindSafe for EffectiveTools
impl Send for EffectiveTools
impl Sync for EffectiveTools
impl Unpin for EffectiveTools
impl UnsafeUnpin for EffectiveTools
impl UnwindSafe for EffectiveTools
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