pub struct OrchestrationBlock {
pub directives: Vec<OrchestrationDirective>,
}Expand description
Orchestration block: an ordered list of key/value directives.
Fields§
§directives: Vec<OrchestrationDirective>The directives.
Trait Implementations§
Source§impl Clone for OrchestrationBlock
impl Clone for OrchestrationBlock
Source§fn clone(&self) -> OrchestrationBlock
fn clone(&self) -> OrchestrationBlock
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 OrchestrationBlock
impl Debug for OrchestrationBlock
Source§impl<'de> Deserialize<'de> for OrchestrationBlock
impl<'de> Deserialize<'de> for OrchestrationBlock
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 OrchestrationBlock
impl PartialEq for OrchestrationBlock
Source§impl Serialize for OrchestrationBlock
impl Serialize for OrchestrationBlock
impl StructuralPartialEq for OrchestrationBlock
Auto Trait Implementations§
impl Freeze for OrchestrationBlock
impl RefUnwindSafe for OrchestrationBlock
impl Send for OrchestrationBlock
impl Sync for OrchestrationBlock
impl Unpin for OrchestrationBlock
impl UnsafeUnpin for OrchestrationBlock
impl UnwindSafe for OrchestrationBlock
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