Struct SopRunRequest
pub struct SopRunRequest {
pub name: String,
pub payload: Option<String>,
}Expand description
Request payload for sops/run: fire a Manual trigger for the named SOP.
payload is an optional JSON string handed to the run as the step-1 input;
omitting it starts the run with no payload. The daemon builds the Manual
SopEvent and dispatches it on the same path as the sop_execute tool.
Fields§
§name: String§payload: Option<String>Trait Implementations§
Source§impl Clone for SopRunRequest
impl Clone for SopRunRequest
Source§fn clone(&self) -> SopRunRequest
fn clone(&self) -> SopRunRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · §fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SopRunRequest
impl Debug for SopRunRequest
Source§impl<'de> Deserialize<'de> for SopRunRequest
impl<'de> Deserialize<'de> for SopRunRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SopRunRequest
impl RefUnwindSafe for SopRunRequest
impl Send for SopRunRequest
impl Sync for SopRunRequest
impl Unpin for SopRunRequest
impl UnsafeUnpin for SopRunRequest
impl UnwindSafe for SopRunRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more