pub struct PermissionRuleValue {
pub tool_name: String,
pub rule_content: Option<String>,
}Expand description
A rule to add, replace, or remove in a permission update.
§Fields
tool_name— The name of the tool this rule applies to.rule_content— Optional rule content string (e.g., a glob pattern or path).
Fields§
§tool_name: StringTool name that this rule applies to.
rule_content: Option<String>Optional rule body (for example a path or glob).
Trait Implementations§
Source§impl Clone for PermissionRuleValue
impl Clone for PermissionRuleValue
Source§fn clone(&self) -> PermissionRuleValue
fn clone(&self) -> PermissionRuleValue
Returns a duplicate of the value. Read more
1.0.0 · 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 PermissionRuleValue
impl Debug for PermissionRuleValue
Source§impl<'de> Deserialize<'de> for PermissionRuleValue
impl<'de> Deserialize<'de> for PermissionRuleValue
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 PermissionRuleValue
impl PartialEq for PermissionRuleValue
Source§impl Serialize for PermissionRuleValue
impl Serialize for PermissionRuleValue
impl Eq for PermissionRuleValue
impl StructuralPartialEq for PermissionRuleValue
Auto Trait Implementations§
impl Freeze for PermissionRuleValue
impl RefUnwindSafe for PermissionRuleValue
impl Send for PermissionRuleValue
impl Sync for PermissionRuleValue
impl Unpin for PermissionRuleValue
impl UnsafeUnpin for PermissionRuleValue
impl UnwindSafe for PermissionRuleValue
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