pub struct OpPlanOutput {
pub op_definition: String,
pub writes_outputs: Vec<String>,
pub friendly_message: Option<String>,
}
Expand description
OpPlanOutput represents the successful result of `Connector.plan(addr, current, desired)``. Specifically, Connector.plan(…) will return a list of one or more OpPlanOutputs representing a sequence of steps to take such that:
Fields§
§op_definition: String
§writes_outputs: Vec<String>
§friendly_message: Option<String>
Trait Implementations§
Source§impl Clone for OpPlanOutput
impl Clone for OpPlanOutput
Source§fn clone(&self) -> OpPlanOutput
fn clone(&self) -> OpPlanOutput
Returns a copy 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 OpPlanOutput
impl Debug for OpPlanOutput
Source§impl<'de> Deserialize<'de> for OpPlanOutput
impl<'de> Deserialize<'de> for OpPlanOutput
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
Auto Trait Implementations§
impl Freeze for OpPlanOutput
impl RefUnwindSafe for OpPlanOutput
impl Send for OpPlanOutput
impl Sync for OpPlanOutput
impl Unpin for OpPlanOutput
impl UnwindSafe for OpPlanOutput
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