pub struct StepResponse {
pub status: u16,
pub status_text: String,
pub headers: HashMap<String, String>,
pub body: Value,
}Fields§
§status: u16§status_text: String§headers: HashMap<String, String>§body: ValueTrait Implementations§
Source§impl Clone for StepResponse
impl Clone for StepResponse
Source§fn clone(&self) -> StepResponse
fn clone(&self) -> StepResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for StepResponse
impl ComposeSchema for StepResponse
Source§impl Debug for StepResponse
impl Debug for StepResponse
Source§impl<'de> Deserialize<'de> for StepResponse
impl<'de> Deserialize<'de> for StepResponse
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
Source§impl Serialize for StepResponse
impl Serialize for StepResponse
Auto Trait Implementations§
impl Freeze for StepResponse
impl RefUnwindSafe for StepResponse
impl Send for StepResponse
impl Sync for StepResponse
impl Unpin for StepResponse
impl UnsafeUnpin for StepResponse
impl UnwindSafe for StepResponse
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