pub struct SyntheticsTestResponse {
pub public_id: String,
pub name: String,
pub test_type: SyntheticsTestType,
pub subtype: SyntheticsTestSubtype,
pub config: SyntheticsTestConfig,
pub options: SyntheticsTestOptions,
pub locations: Vec<String>,
pub message: Option<String>,
pub tags: Option<Vec<String>>,
pub status: String,
}Fields§
§public_id: String§name: String§test_type: SyntheticsTestType§subtype: SyntheticsTestSubtype§config: SyntheticsTestConfig§options: SyntheticsTestOptions§locations: Vec<String>§message: Option<String>§status: StringTrait Implementations§
Source§impl Clone for SyntheticsTestResponse
impl Clone for SyntheticsTestResponse
Source§fn clone(&self) -> SyntheticsTestResponse
fn clone(&self) -> SyntheticsTestResponse
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 Debug for SyntheticsTestResponse
impl Debug for SyntheticsTestResponse
Source§impl<'de> Deserialize<'de> for SyntheticsTestResponse
impl<'de> Deserialize<'de> for SyntheticsTestResponse
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 SyntheticsTestResponse
impl RefUnwindSafe for SyntheticsTestResponse
impl Send for SyntheticsTestResponse
impl Sync for SyntheticsTestResponse
impl Unpin for SyntheticsTestResponse
impl UnwindSafe for SyntheticsTestResponse
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