pub trait ScimFilter {
    type Item: Serialize;

    // Required method
    fn scim_filter(self, input: &str) -> Result<Vec<Self::Item>, Error>;
}
Expand description

Import this trait to add to every type x that can be made into an iterator over I: Serialize a x.scim_filter(input: &str) function that return a result with a vector of filtered I

Required Associated Types§

Required Methods§

source

fn scim_filter(self, input: &str) -> Result<Vec<Self::Item>, Error>

Implementors§

source§

impl<I: Serialize, T: IntoIterator<Item = I>> ScimFilter for T

§

type Item = I