pub struct ProcessIntrospection {
pub definition: ProcessDefinitionIdentity,
pub label: Option<LabelMetadata>,
pub params: Vec<ProcessInputIntrospection>,
pub signals: Vec<ProcessSignalIntrospection>,
pub return_type: Option<TypeView>,
pub canonical_source: String,
}Fields§
§definition: ProcessDefinitionIdentity§label: Option<LabelMetadata>§params: Vec<ProcessInputIntrospection>§signals: Vec<ProcessSignalIntrospection>§return_type: Option<TypeView>§canonical_source: StringTrait Implementations§
Source§impl Clone for ProcessIntrospection
impl Clone for ProcessIntrospection
Source§fn clone(&self) -> ProcessIntrospection
fn clone(&self) -> ProcessIntrospection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProcessIntrospection
impl Debug for ProcessIntrospection
Source§impl<'de> Deserialize<'de> for ProcessIntrospection
impl<'de> Deserialize<'de> for ProcessIntrospection
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 ProcessIntrospection
impl PartialEq for ProcessIntrospection
Source§fn eq(&self, other: &ProcessIntrospection) -> bool
fn eq(&self, other: &ProcessIntrospection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessIntrospection
impl Serialize for ProcessIntrospection
impl StructuralPartialEq for ProcessIntrospection
Auto Trait Implementations§
impl Freeze for ProcessIntrospection
impl RefUnwindSafe for ProcessIntrospection
impl Send for ProcessIntrospection
impl Sync for ProcessIntrospection
impl Unpin for ProcessIntrospection
impl UnsafeUnpin for ProcessIntrospection
impl UnwindSafe for ProcessIntrospection
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