Lines Matching defs:CommandResult
203 pub type CommandResult<T> = core::result::Result<T, CommandError>; typedef
287 async fn get_var_all(&mut self, responder: impl VarInfoSender) -> CommandResult<()>; in get_var_all()
297 ) -> CommandResult<()>; in download_complete()
305 async fn flash(&mut self, part: &str, responder: impl InfoSender) -> CommandResult<()>; in flash()
313 async fn erase(&mut self, part: &str, responder: impl InfoSender) -> CommandResult<()>; in erase()
340 async fn upload(&mut self, responder: impl UploadBuilder + InfoSender) -> CommandResult<()>; in upload()
356 ) -> CommandResult<()>; in fetch()
385 async fn r#continue(&mut self, responder: impl InfoSender) -> CommandResult<()>; implementation
388 async fn set_active(&mut self, slot: &str, responder: impl InfoSender) -> CommandResult<()>; in set_active()
402 async fn boot(&mut self, responder: impl InfoSender + OkaySender) -> CommandResult<()>; in boot()
721 ) -> CommandResult<()> { in get_var_all_with_native()
1146 async fn get_var_all(&mut self, mut responder: impl VarInfoSender) -> CommandResult<()> { in get_var_all()
1161 ) -> CommandResult<()> { in download_complete()
1166 async fn flash(&mut self, part: &str, _: impl InfoSender) -> CommandResult<()> { in flash()
1171 async fn erase(&mut self, part: &str, _: impl InfoSender) -> CommandResult<()> { in erase()
1176 async fn upload(&mut self, responder: impl UploadBuilder) -> CommandResult<()> { in upload()
1191 ) -> CommandResult<()> { in fetch()
1199 async fn boot(&mut self, mut responder: impl InfoSender + OkaySender) -> CommandResult<()> { in boot()
1213 async fn r#continue(&mut self, mut responder: impl InfoSender) -> CommandResult<()> { implementation
1217 async fn set_active(&mut self, slot: &str, _: impl InfoSender) -> CommandResult<()> { in set_active()