pub struct OpenFlowWPath {
pub summary: String,
pub description: Option<String>,
pub value: Box<FlowValue>,
pub schema: Option<Value>,
pub path: String,
pub tag: Option<String>,
pub ws_error_handler_muted: Option<bool>,
pub priority: Option<i32>,
pub dedicated_worker: Option<bool>,
pub timeout: Option<f64>,
pub visible_to_runner_only: Option<bool>,
pub on_behalf_of_email: Option<String>,
}
Fields§
§summary: String
§description: Option<String>
§value: Box<FlowValue>
§schema: Option<Value>
§path: String
§tag: Option<String>
§ws_error_handler_muted: Option<bool>
§priority: Option<i32>
§dedicated_worker: Option<bool>
§timeout: Option<f64>
§visible_to_runner_only: Option<bool>
§on_behalf_of_email: Option<String>
Implementations§
Source§impl OpenFlowWPath
impl OpenFlowWPath
Trait Implementations§
Source§impl Clone for OpenFlowWPath
impl Clone for OpenFlowWPath
Source§fn clone(&self) -> OpenFlowWPath
fn clone(&self) -> OpenFlowWPath
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 OpenFlowWPath
impl Debug for OpenFlowWPath
Source§impl Default for OpenFlowWPath
impl Default for OpenFlowWPath
Source§fn default() -> OpenFlowWPath
fn default() -> OpenFlowWPath
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OpenFlowWPath
impl<'de> Deserialize<'de> for OpenFlowWPath
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 OpenFlowWPath
impl PartialEq for OpenFlowWPath
Source§impl Serialize for OpenFlowWPath
impl Serialize for OpenFlowWPath
impl StructuralPartialEq for OpenFlowWPath
Auto Trait Implementations§
impl Freeze for OpenFlowWPath
impl RefUnwindSafe for OpenFlowWPath
impl Send for OpenFlowWPath
impl Sync for OpenFlowWPath
impl Unpin for OpenFlowWPath
impl UnwindSafe for OpenFlowWPath
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