pub struct EventFlowSection {
pub flow_type: String,
pub start_events: Option<Vec<String>>,
pub delta_events: Option<Vec<String>>,
pub stop_events: Option<Vec<String>>,
}Fields§
§flow_type: String§start_events: Option<Vec<String>>§delta_events: Option<Vec<String>>§stop_events: Option<Vec<String>>Trait Implementations§
Source§impl Clone for EventFlowSection
impl Clone for EventFlowSection
Source§fn clone(&self) -> EventFlowSection
fn clone(&self) -> EventFlowSection
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 EventFlowSection
impl Debug for EventFlowSection
Source§impl<'de> Deserialize<'de> for EventFlowSection
impl<'de> Deserialize<'de> for EventFlowSection
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 Serialize for EventFlowSection
impl Serialize for EventFlowSection
Source§impl Validate for EventFlowSection
impl Validate for EventFlowSection
Source§impl<'v_a> ValidateArgs<'v_a> for EventFlowSection
impl<'v_a> ValidateArgs<'v_a> for EventFlowSection
Auto Trait Implementations§
impl Freeze for EventFlowSection
impl RefUnwindSafe for EventFlowSection
impl Send for EventFlowSection
impl Sync for EventFlowSection
impl Unpin for EventFlowSection
impl UnwindSafe for EventFlowSection
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