Trait scim_filter::ScimFilter
source · 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