pub struct GrokPattern {
pub pattern: Pattern,
}Fields§
§pattern: PatternImplementations§
Source§impl GrokPattern
impl GrokPattern
pub fn match_to_writer<W>(&self, text: &str, wtr: &mut W) -> Result<(), Error>
pub fn texts2match2writer<W, I>( &self, texts: I, wtr: &mut W, ) -> Result<(), Error>
pub fn reader2txts2match2writer<W, R>( &self, texts: R, wtr: &mut W, ) -> Result<(), Error>
pub fn stdin2txts2match2writer<W>(&self, wtr: &mut W) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for GrokPattern
impl RefUnwindSafe for GrokPattern
impl Send for GrokPattern
impl Sync for GrokPattern
impl Unpin for GrokPattern
impl UnsafeUnpin for GrokPattern
impl UnwindSafe for GrokPattern
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