pub struct FormatStep {
pub cmd: String,
pub timeout: Option<u64>,
}Expand description
A format step to run after applying operations but before validation.
Fields§
§cmd: String§timeout: Option<u64>Timeout in seconds (default: 60).
Trait Implementations§
Source§impl Debug for FormatStep
impl Debug for FormatStep
Source§impl<'de> Deserialize<'de> for FormatStep
impl<'de> Deserialize<'de> for FormatStep
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 FormatStep
impl RefUnwindSafe for FormatStep
impl Send for FormatStep
impl Sync for FormatStep
impl Unpin for FormatStep
impl UnsafeUnpin for FormatStep
impl UnwindSafe for FormatStep
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