pub struct FrontendPatternFields {
pub pattern: String,
pub file_pattern: Option<String>,
}Expand description
Fields for frontend.cssclass and frontend.cssvar conditions.
Fields§
§pattern: String§file_pattern: Option<String>File path regex filter. Only scan files whose path matches this pattern.
Trait Implementations§
Source§impl Debug for FrontendPatternFields
impl Debug for FrontendPatternFields
Source§impl<'de> Deserialize<'de> for FrontendPatternFields
impl<'de> Deserialize<'de> for FrontendPatternFields
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FrontendPatternFields, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FrontendPatternFields, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for FrontendPatternFields
impl Serialize for FrontendPatternFields
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for FrontendPatternFields
impl RefUnwindSafe for FrontendPatternFields
impl Send for FrontendPatternFields
impl Sync for FrontendPatternFields
impl Unpin for FrontendPatternFields
impl UnsafeUnpin for FrontendPatternFields
impl UnwindSafe for FrontendPatternFields
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