pub struct ControllerServiceReferencingComponentDto {
pub active_thread_count: Option<i32>,
pub descriptors: Option<HashMap<String, Option<PropertyDescriptorDto>>>,
pub group_id: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub properties: Option<HashMap<String, Option<String>>>,
pub reference_cycle: Option<bool>,
pub reference_type: Option<String>,
pub referencing_components: Option<Vec<ControllerServiceReferencingComponentEntity>>,
pub state: Option<String>,
pub type: Option<String>,
pub validation_errors: Option<Vec<String>>,
}Fields§
§active_thread_count: Option<i32>§descriptors: Option<HashMap<String, Option<PropertyDescriptorDto>>>§group_id: Option<String>§id: Option<String>§name: Option<String>§properties: Option<HashMap<String, Option<String>>>§reference_cycle: Option<bool>§reference_type: Option<String>§referencing_components: Option<Vec<ControllerServiceReferencingComponentEntity>>§state: Option<String>§type: Option<String>§validation_errors: Option<Vec<String>>Trait Implementations§
Source§impl Clone for ControllerServiceReferencingComponentDto
impl Clone for ControllerServiceReferencingComponentDto
Source§fn clone(&self) -> ControllerServiceReferencingComponentDto
fn clone(&self) -> ControllerServiceReferencingComponentDto
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 Default for ControllerServiceReferencingComponentDto
impl Default for ControllerServiceReferencingComponentDto
Source§fn default() -> ControllerServiceReferencingComponentDto
fn default() -> ControllerServiceReferencingComponentDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ControllerServiceReferencingComponentDto
impl<'de> Deserialize<'de> for ControllerServiceReferencingComponentDto
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<ControllerServiceReferencingComponentDto> for ControllerServiceReferencingComponentDto
impl From<ControllerServiceReferencingComponentDto> for ControllerServiceReferencingComponentDto
Source§fn from(v: ControllerServiceReferencingComponentDto) -> Self
fn from(v: ControllerServiceReferencingComponentDto) -> Self
Converts to this type from the input type.
Source§impl From<ControllerServiceReferencingComponentDto> for ControllerServiceReferencingComponentDto
impl From<ControllerServiceReferencingComponentDto> for ControllerServiceReferencingComponentDto
Source§fn from(v: ControllerServiceReferencingComponentDto) -> Self
fn from(v: ControllerServiceReferencingComponentDto) -> Self
Converts to this type from the input type.
Source§impl From<ControllerServiceReferencingComponentDto> for ControllerServiceReferencingComponentDto
impl From<ControllerServiceReferencingComponentDto> for ControllerServiceReferencingComponentDto
Source§fn from(v: ControllerServiceReferencingComponentDto) -> Self
fn from(v: ControllerServiceReferencingComponentDto) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ControllerServiceReferencingComponentDto
impl RefUnwindSafe for ControllerServiceReferencingComponentDto
impl Send for ControllerServiceReferencingComponentDto
impl Sync for ControllerServiceReferencingComponentDto
impl Unpin for ControllerServiceReferencingComponentDto
impl UnsafeUnpin for ControllerServiceReferencingComponentDto
impl UnwindSafe for ControllerServiceReferencingComponentDto
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