Struct atomic_bomb_engine::models::setup::SetupApiEndpoint
source · pub struct SetupApiEndpoint {
pub name: String,
pub url: String,
pub method: String,
pub timeout_secs: u64,
pub json: Option<Value>,
pub form_data: Option<HashMap<String, String>>,
pub headers: Option<HashMap<String, String>>,
pub cookies: Option<String>,
pub jsonpath_extract: Option<Vec<JsonpathExtract>>,
}Fields§
§name: String§url: String§method: String§timeout_secs: u64§json: Option<Value>§form_data: Option<HashMap<String, String>>§headers: Option<HashMap<String, String>>§jsonpath_extract: Option<Vec<JsonpathExtract>>Trait Implementations§
source§impl Clone for SetupApiEndpoint
impl Clone for SetupApiEndpoint
source§fn clone(&self) -> SetupApiEndpoint
fn clone(&self) -> SetupApiEndpoint
Returns a copy 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 Debug for SetupApiEndpoint
impl Debug for SetupApiEndpoint
source§impl<'de> Deserialize<'de> for SetupApiEndpoint
impl<'de> Deserialize<'de> for SetupApiEndpoint
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 SetupApiEndpoint
impl RefUnwindSafe for SetupApiEndpoint
impl Send for SetupApiEndpoint
impl Sync for SetupApiEndpoint
impl Unpin for SetupApiEndpoint
impl UnwindSafe for SetupApiEndpoint
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