pub struct OrchestrationDescriptor {
pub name: String,
pub version: String,
pub parent_instance: Option<String>,
pub parent_id: Option<u64>,
}Expand description
Introspection: descriptor of an orchestration derived from history.
Fields§
§name: String§version: String§parent_instance: Option<String>§parent_id: Option<u64>Trait Implementations§
Source§impl Clone for OrchestrationDescriptor
impl Clone for OrchestrationDescriptor
Source§fn clone(&self) -> OrchestrationDescriptor
fn clone(&self) -> OrchestrationDescriptor
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 OrchestrationDescriptor
impl Debug for OrchestrationDescriptor
Source§impl PartialEq for OrchestrationDescriptor
impl PartialEq for OrchestrationDescriptor
impl Eq for OrchestrationDescriptor
impl StructuralPartialEq for OrchestrationDescriptor
Auto Trait Implementations§
impl Freeze for OrchestrationDescriptor
impl RefUnwindSafe for OrchestrationDescriptor
impl Send for OrchestrationDescriptor
impl Sync for OrchestrationDescriptor
impl Unpin for OrchestrationDescriptor
impl UnwindSafe for OrchestrationDescriptor
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