Lines Matching refs:features
20 Our example is a simple route mapping application that lets clients get information about features
123 // huge number of features.
179 tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
183 serde = { version = "1.0", features = ["derive"] }
314 Our service needs access to an immutable list of features. When the server starts, we are going to
320 features: Arc<Vec<Feature>>,
324 Create the json data file and a helper module to read and deserialize our features.
382 for feature in &self.features[..] {
405 let features = self.features.clone();
408 for feature in &features[..] {
422 the features that satisfy our constraints into the channel.
453 for feature in &self.features[..] {
544 features: Arc::new(data::load()),