pub struct RulepackRuleSummary {
pub name: String,
pub phase: RulepackPhase,
pub priority: i64,
pub id: Option<String>,
pub tags: Vec<String>,
pub mode: Option<RulepackMode>,
pub content: Option<String>,
pub path: Option<PathBuf>,
}Fields§
§name: String§phase: RulepackPhase§priority: i64§id: Option<String>§mode: Option<RulepackMode>§content: Option<String>§path: Option<PathBuf>Trait Implementations§
Source§impl Clone for RulepackRuleSummary
impl Clone for RulepackRuleSummary
Source§fn clone(&self) -> RulepackRuleSummary
fn clone(&self) -> RulepackRuleSummary
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 RulepackRuleSummary
impl Debug for RulepackRuleSummary
Source§impl<'de> Deserialize<'de> for RulepackRuleSummary
impl<'de> Deserialize<'de> for RulepackRuleSummary
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 RulepackRuleSummary
impl RefUnwindSafe for RulepackRuleSummary
impl Send for RulepackRuleSummary
impl Sync for RulepackRuleSummary
impl Unpin for RulepackRuleSummary
impl UnsafeUnpin for RulepackRuleSummary
impl UnwindSafe for RulepackRuleSummary
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