Lines Matching refs:intention

80     /// Request to enable the service identified by [`intention`].
81 pub fn enable(&self, intention: Intention, data: &dyn Serialize,
94 self.0.enable(intention, &borrowed_data_parcel, reply)
103 /// Request to disable the service identified by [`intention`].
104 pub fn disable(&self, intention: Intention, data: &dyn Serialize,
117 self.0.disable(intention, &borrowed_data_parcel, reply)
126 /// Request to start the service identified by [`intention`].
127 pub fn start(&self, intention: Intention, data: &dyn Serialize,
140 self.0.start(intention, &borrowed_data_parcel, reply)
149 /// Request to stop the service identified by [`intention`].
150 pub fn stop(&self, intention: Intention, data: &dyn Serialize,
163 self.0.stop(intention, &borrowed_data_parcel, reply)
173 /// [`intention`], the state to watch identified by [`id`], parameters packed in
175 pub fn add_watch(&self, intention: Intention, id: u32, data: &dyn Serialize,
188 self.0.add_watch(intention, id, &borrowed_data_parcel, reply)
198 pub fn remove_watch(&self, intention: Intention, id: u32, data: &dyn Serialize,
211 self.0.remove_watch(intention, id, &borrowed_data_parcel, reply)
221 /// [`intention`], the parameter identified by [`id`], and values packed in
223 pub fn set_param(&self, intention: Intention, id: u32, data: &dyn Serialize,
236 self.0.set_param(intention, id, &borrowed_data_parcel, reply)
246 /// [`intention`], the parameter identified by [`id`].
247 pub fn get_param(&self, intention: Intention, id: u32, data: &dyn Serialize,
260 self.0.get_param(intention, id, &borrowed_data_parcel, reply)
269 /// Request to interact with service identified by [`intention`] for general purpose.
272 pub fn control(&self, intention: Intention, id: u32, data: &dyn Serialize,
285 self.0.control(intention, id, &borrowed_data_parcel, reply)