pub struct JsonschemaWorkflowExtensions {
pub description: Option<String>,
pub max_file_size: Option<i32>,
pub name: Option<String>,
pub node_id: Option<String>,
pub system: Option<bool>,
pub tags: Option<Vec<String>>,
pub x_cs_no_variable_injection: Option<bool>,
}Fields§
§description: Option<String>§max_file_size: Option<i32>max file size allowed in bytes
name: Option<String>§node_id: Option<String>§system: Option<bool>§x_cs_no_variable_injection: Option<bool>Implementations§
Source§impl JsonschemaWorkflowExtensions
impl JsonschemaWorkflowExtensions
pub fn new() -> JsonschemaWorkflowExtensions
Trait Implementations§
Source§impl Clone for JsonschemaWorkflowExtensions
impl Clone for JsonschemaWorkflowExtensions
Source§fn clone(&self) -> JsonschemaWorkflowExtensions
fn clone(&self) -> JsonschemaWorkflowExtensions
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 JsonschemaWorkflowExtensions
impl Debug for JsonschemaWorkflowExtensions
Source§impl Default for JsonschemaWorkflowExtensions
impl Default for JsonschemaWorkflowExtensions
Source§fn default() -> JsonschemaWorkflowExtensions
fn default() -> JsonschemaWorkflowExtensions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JsonschemaWorkflowExtensions
impl<'de> Deserialize<'de> for JsonschemaWorkflowExtensions
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 PartialEq for JsonschemaWorkflowExtensions
impl PartialEq for JsonschemaWorkflowExtensions
Source§fn eq(&self, other: &JsonschemaWorkflowExtensions) -> bool
fn eq(&self, other: &JsonschemaWorkflowExtensions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JsonschemaWorkflowExtensions
Auto Trait Implementations§
impl Freeze for JsonschemaWorkflowExtensions
impl RefUnwindSafe for JsonschemaWorkflowExtensions
impl Send for JsonschemaWorkflowExtensions
impl Sync for JsonschemaWorkflowExtensions
impl Unpin for JsonschemaWorkflowExtensions
impl UnwindSafe for JsonschemaWorkflowExtensions
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