• Home
  • Raw
  • Download

Lines Matching defs:CommandResult

206 pub type CommandResult<T> = core::result::Result<T, CommandError>;  typedef
290 async fn get_var_all(&mut self, responder: impl VarInfoSender) -> CommandResult<()>; in get_var_all()
300 ) -> CommandResult<()>; in download_complete()
308 async fn flash(&mut self, part: &str, responder: impl InfoSender) -> CommandResult<()>; in flash()
316 async fn erase(&mut self, part: &str, responder: impl InfoSender) -> CommandResult<()>; in erase()
343 async fn upload(&mut self, responder: impl UploadBuilder + InfoSender) -> CommandResult<()>; in upload()
359 ) -> CommandResult<()>; in fetch()
388 async fn r#continue(&mut self, responder: impl InfoSender) -> CommandResult<()>; implementation
391 async fn set_active(&mut self, slot: &str, responder: impl InfoSender) -> CommandResult<()>; in set_active()
405 async fn boot(&mut self, responder: impl InfoSender + OkaySender) -> CommandResult<()>; in boot()
724 ) -> CommandResult<()> { in get_var_all_with_native()
1099 async fn get_var_all(&mut self, mut responder: impl VarInfoSender) -> CommandResult<()> { in get_var_all()
1114 ) -> CommandResult<()> { in download_complete()
1119 async fn flash(&mut self, part: &str, _: impl InfoSender) -> CommandResult<()> { in flash()
1124 async fn erase(&mut self, part: &str, _: impl InfoSender) -> CommandResult<()> { in erase()
1129 async fn upload(&mut self, responder: impl UploadBuilder) -> CommandResult<()> { in upload()
1144 ) -> CommandResult<()> { in fetch()
1152 async fn boot(&mut self, mut responder: impl InfoSender + OkaySender) -> CommandResult<()> { in boot()
1166 async fn r#continue(&mut self, mut responder: impl InfoSender) -> CommandResult<()> { implementation
1170 async fn set_active(&mut self, slot: &str, _: impl InfoSender) -> CommandResult<()> { in set_active()