mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
age: Return correct response encoding for confirm
command
This commit is contained in:
parent
56597a6815
commit
1324b80562
3 changed files with 7 additions and 1 deletions
|
@ -10,6 +10,7 @@ to 1.0.0 are beta releases.
|
|||
### Added
|
||||
- `age_core::io::{DebugReader, DebugWriter}`
|
||||
- `age_core::plugin::Error::Unsupported`
|
||||
- `age_core::plugin::Reply::ok_with_metadata`
|
||||
|
||||
### Changed
|
||||
- MSRV is now 1.56.0.
|
||||
|
|
|
@ -382,6 +382,11 @@ impl<'a, R: Read, W: Write> Reply<'a, R, W> {
|
|||
)
|
||||
}
|
||||
|
||||
/// Reply with `ok`, metadata, and optional data.
|
||||
pub fn ok_with_metadata<S: AsRef<str>>(self, metadata: &[S], data: Option<&[u8]>) -> Response {
|
||||
Response(self.0.send(RESPONSE_OK, metadata, data.unwrap_or_default()))
|
||||
}
|
||||
|
||||
/// The command failed (for example, the user failed to respond to an input request).
|
||||
pub fn fail(self) -> Response {
|
||||
Response(self.0.send::<&str>(RESPONSE_FAIL, &[], &[]))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue