pub struct SuiteCase {Show 21 fields
pub id: String,
pub case_type: String,
pub tags: Vec<String>,
pub env: String,
pub no_history: Option<bool>,
pub allow_write: bool,
pub config_dir: String,
pub url: String,
pub token: String,
pub request: String,
pub grpc_proto: Option<String>,
pub grpc_import_paths: Option<Vec<String>>,
pub grpc_plaintext: Option<bool>,
pub login_request: String,
pub token_jq: String,
pub jwt: String,
pub op: String,
pub vars: Option<String>,
pub allow_errors: bool,
pub expect: Option<SuiteGraphqlExpect>,
pub cleanup: Option<SuiteCleanup>,
}Fields§
§id: String§case_type: String§env: String§no_history: Option<bool>§allow_write: bool§config_dir: String§url: String§token: String§request: String§grpc_proto: Option<String>§grpc_import_paths: Option<Vec<String>>§grpc_plaintext: Option<bool>§login_request: String§token_jq: String§jwt: String§op: String§vars: Option<String>§allow_errors: bool§expect: Option<SuiteGraphqlExpect>§cleanup: Option<SuiteCleanup>Trait Implementations§
Source§impl<'de> Deserialize<'de> for SuiteCase
impl<'de> Deserialize<'de> for SuiteCase
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 SuiteCase
impl RefUnwindSafe for SuiteCase
impl Send for SuiteCase
impl Sync for SuiteCase
impl Unpin for SuiteCase
impl UnsafeUnpin for SuiteCase
impl UnwindSafe for SuiteCase
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