pub struct FlowAnalysisRuleDto {Show 21 fields
pub bundle: Option<BundleDto>,
pub comments: Option<String>,
pub deprecated: Option<bool>,
pub descriptors: Option<HashMap<String, Option<PropertyDescriptorDto>>>,
pub enforcement_policy: Option<String>,
pub extension_missing: Option<bool>,
pub id: Option<String>,
pub multiple_versions_available: Option<bool>,
pub name: Option<String>,
pub parent_group_id: Option<String>,
pub persists_state: Option<bool>,
pub position: Option<PositionDto>,
pub properties: Option<HashMap<String, Option<String>>>,
pub restricted: Option<bool>,
pub sensitive_dynamic_property_names: Option<Vec<String>>,
pub state: Option<String>,
pub supports_sensitive_dynamic_properties: Option<bool>,
pub type: Option<String>,
pub validation_errors: Option<Vec<String>>,
pub validation_status: Option<String>,
pub versioned_component_id: Option<String>,
}Fields§
§bundle: Option<BundleDto>§comments: Option<String>§deprecated: Option<bool>§descriptors: Option<HashMap<String, Option<PropertyDescriptorDto>>>§enforcement_policy: Option<String>§extension_missing: Option<bool>§id: Option<String>§multiple_versions_available: Option<bool>§name: Option<String>§parent_group_id: Option<String>§persists_state: Option<bool>§position: Option<PositionDto>§properties: Option<HashMap<String, Option<String>>>§restricted: Option<bool>§sensitive_dynamic_property_names: Option<Vec<String>>§state: Option<String>§supports_sensitive_dynamic_properties: Option<bool>§type: Option<String>§validation_errors: Option<Vec<String>>§validation_status: Option<String>§versioned_component_id: Option<String>Trait Implementations§
Source§impl Clone for FlowAnalysisRuleDto
impl Clone for FlowAnalysisRuleDto
Source§fn clone(&self) -> FlowAnalysisRuleDto
fn clone(&self) -> FlowAnalysisRuleDto
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 FlowAnalysisRuleDto
impl Debug for FlowAnalysisRuleDto
Source§impl Default for FlowAnalysisRuleDto
impl Default for FlowAnalysisRuleDto
Source§fn default() -> FlowAnalysisRuleDto
fn default() -> FlowAnalysisRuleDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowAnalysisRuleDto
impl<'de> Deserialize<'de> for FlowAnalysisRuleDto
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 From<FlowAnalysisRuleDto> for FlowAnalysisRuleDto
impl From<FlowAnalysisRuleDto> for FlowAnalysisRuleDto
Source§fn from(v: FlowAnalysisRuleDto) -> Self
fn from(v: FlowAnalysisRuleDto) -> Self
Converts to this type from the input type.
Source§impl From<FlowAnalysisRuleDto> for FlowAnalysisRuleDto
impl From<FlowAnalysisRuleDto> for FlowAnalysisRuleDto
Source§fn from(v: FlowAnalysisRuleDto) -> Self
fn from(v: FlowAnalysisRuleDto) -> Self
Converts to this type from the input type.
Source§impl From<FlowAnalysisRuleDto> for FlowAnalysisRuleDto
impl From<FlowAnalysisRuleDto> for FlowAnalysisRuleDto
Source§fn from(v: FlowAnalysisRuleDto) -> Self
fn from(v: FlowAnalysisRuleDto) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FlowAnalysisRuleDto
impl RefUnwindSafe for FlowAnalysisRuleDto
impl Send for FlowAnalysisRuleDto
impl Sync for FlowAnalysisRuleDto
impl Unpin for FlowAnalysisRuleDto
impl UnsafeUnpin for FlowAnalysisRuleDto
impl UnwindSafe for FlowAnalysisRuleDto
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