pub struct GlobalNodePlan {
pub enabled: Option<bool>,
pub enter_condition: Option<String>,
}
Fields§
§enabled: Option<bool>
This is the flag to determine if this node is a global node @default false
enter_condition: Option<String>
This is the condition that will be checked to determine if the global node should be executed. @default ‘’
Implementations§
Source§impl GlobalNodePlan
impl GlobalNodePlan
pub fn new() -> GlobalNodePlan
Trait Implementations§
Source§impl Clone for GlobalNodePlan
impl Clone for GlobalNodePlan
Source§fn clone(&self) -> GlobalNodePlan
fn clone(&self) -> GlobalNodePlan
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GlobalNodePlan
impl Debug for GlobalNodePlan
Source§impl Default for GlobalNodePlan
impl Default for GlobalNodePlan
Source§fn default() -> GlobalNodePlan
fn default() -> GlobalNodePlan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GlobalNodePlan
impl<'de> Deserialize<'de> for GlobalNodePlan
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 GlobalNodePlan
impl PartialEq for GlobalNodePlan
Source§impl Serialize for GlobalNodePlan
impl Serialize for GlobalNodePlan
impl StructuralPartialEq for GlobalNodePlan
Auto Trait Implementations§
impl Freeze for GlobalNodePlan
impl RefUnwindSafe for GlobalNodePlan
impl Send for GlobalNodePlan
impl Sync for GlobalNodePlan
impl Unpin for GlobalNodePlan
impl UnwindSafe for GlobalNodePlan
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