pub struct RuleGroup {
pub id: String,
pub name: String,
pub active: bool,
pub rules: Vec<Rule>,
}Fields§
§id: String§name: String§active: bool§rules: Vec<Rule>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RuleGroup
impl<'de> Deserialize<'de> for RuleGroup
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
Auto Trait Implementations§
impl Freeze for RuleGroup
impl RefUnwindSafe for RuleGroup
impl Send for RuleGroup
impl Sync for RuleGroup
impl Unpin for RuleGroup
impl UnsafeUnpin for RuleGroup
impl UnwindSafe for RuleGroup
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