pub enum PluginResponseKind {
Ok {
data: Option<Vec<u8>>,
},
Error {
data: Option<Vec<u8>>,
},
}
Available on crate feature
handover
only.Expand description
The kind of response to send back to kvarnctl
.
See PluginResponse
for more details.