Struct SopRunsRequest
pub struct SopRunsRequest {
pub sop: Option<String>,
}Expand description
Request payload for sops/runs: enumerate runs the engine currently holds
(active plus retained terminal), newest first. sop optionally scopes the
listing to a single SOP by name; omitting it lists every SOP’s runs.
Fields§
§sop: Option<String>Trait Implementations§
Source§impl Clone for SopRunsRequest
impl Clone for SopRunsRequest
Source§fn clone(&self) -> SopRunsRequest
fn clone(&self) -> SopRunsRequest
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 SopRunsRequest
impl Debug for SopRunsRequest
Source§impl Default for SopRunsRequest
impl Default for SopRunsRequest
Source§fn default() -> SopRunsRequest
fn default() -> SopRunsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SopRunsRequest
impl<'de> Deserialize<'de> for SopRunsRequest
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 SopRunsRequest
impl RefUnwindSafe for SopRunsRequest
impl Send for SopRunsRequest
impl Sync for SopRunsRequest
impl Unpin for SopRunsRequest
impl UnsafeUnpin for SopRunsRequest
impl UnwindSafe for SopRunsRequest
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