pub struct ValidateCodeInput {
pub code: String,
pub variables: Option<Value>,
pub format: Option<String>,
pub dry_run: Option<bool>,
}Expand description
Input for validate_code tool.
Fields§
§code: String§variables: Option<Value>§format: Option<String>§dry_run: Option<bool>Trait Implementations§
Source§impl Debug for ValidateCodeInput
impl Debug for ValidateCodeInput
Source§impl<'de> Deserialize<'de> for ValidateCodeInput
impl<'de> Deserialize<'de> for ValidateCodeInput
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 ValidateCodeInput
impl RefUnwindSafe for ValidateCodeInput
impl Send for ValidateCodeInput
impl Sync for ValidateCodeInput
impl Unpin for ValidateCodeInput
impl UnsafeUnpin for ValidateCodeInput
impl UnwindSafe for ValidateCodeInput
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