pub struct Pattern {
pub name: String,
pub pattern_type: PatternType,
pub data: PatternData,
pub category: PatternCategory,
pub description: String,
}
Expand description
A pattern to search for
Fields§
§name: String
Pattern name/identifier
pattern_type: PatternType
Pattern type
data: PatternData
Pattern data
category: PatternCategory
Pattern category
description: String
Description
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pattern
impl RefUnwindSafe for Pattern
impl Send for Pattern
impl Sync for Pattern
impl Unpin for Pattern
impl UnwindSafe for Pattern
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