pub struct VerifyStateParams {
pub frontend_expr: String,
pub backend_state: Option<Value>,
pub backend_command: Option<String>,
pub backend_args: Option<Value>,
pub webview_label: Option<String>,
}Expand description
Parameters for the verify_state tool.
Fields§
§frontend_expr: StringJavaScript expression that returns the frontend state object to compare.
backend_state: Option<Value>Backend state as a JSON object to compare against.
Either this or backend_command must be provided.
backend_command: Option<String>Tauri command to invoke to fetch backend state for comparison.
The command result is used as the backend state. Mutually exclusive with backend_state.
backend_args: Option<Value>Arguments for the backend_command, if any.
webview_label: Option<String>Target webview label.
Trait Implementations§
Source§impl Debug for VerifyStateParams
impl Debug for VerifyStateParams
Source§impl<'de> Deserialize<'de> for VerifyStateParams
impl<'de> Deserialize<'de> for VerifyStateParams
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 JsonSchema for VerifyStateParams
impl JsonSchema for VerifyStateParams
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for VerifyStateParams
impl RefUnwindSafe for VerifyStateParams
impl Send for VerifyStateParams
impl Sync for VerifyStateParams
impl Unpin for VerifyStateParams
impl UnsafeUnpin for VerifyStateParams
impl UnwindSafe for VerifyStateParams
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