[][src]Struct streamson_lib::strategy::filter::Filter

pub struct Filter { /* fields omitted */ }

Processes data from input and remove matched parts (and keeps the json valid)

Implementations

impl Filter[src]

pub fn new() -> Self[src]

Create new filter

It removes matched parts of the input

pub fn add_matcher(&mut self, matcher: Box<dyn MatchMaker>)[src]

Adds new matcher into filtering

Arguments

  • matcher - matcher which matches the path

Example

use streamson_lib::{strategy, matcher};
use std::sync::{Arc, Mutex};

let mut filter = strategy::Filter::new();
let matcher = matcher::Simple::new(r#"{"list"}[]"#).unwrap();
filter.add_matcher(
    Box::new(matcher),
);

pub fn process(&mut self, input: &[u8]) -> Result<Vec<u8>, General>[src]

Processes input data

Returns

  • `Ok(_) processing passed, more data might be needed
  • Err(_) when input is not correct json

Errors

  • Error is triggered when incorrect json is detected Note that not all json errors are detected

Trait Implementations

impl Default for Filter[src]

Auto Trait Implementations

impl !RefUnwindSafe for Filter

impl Send for Filter

impl !Sync for Filter

impl Unpin for Filter

impl !UnwindSafe for Filter

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.