pub enum FindingLocation {
Transition {
from_state: String,
to_state: String,
},
State {
state: String,
},
Data {
data_key: String,
},
Flow,
}Expand description
Describes where in a flow definition a finding is located.
Variants§
Trait Implementations§
Source§impl Clone for FindingLocation
impl Clone for FindingLocation
Source§fn clone(&self) -> FindingLocation
fn clone(&self) -> FindingLocation
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 FindingLocation
impl Debug for FindingLocation
Source§impl Display for FindingLocation
impl Display for FindingLocation
Source§impl PartialEq for FindingLocation
impl PartialEq for FindingLocation
impl Eq for FindingLocation
impl StructuralPartialEq for FindingLocation
Auto Trait Implementations§
impl Freeze for FindingLocation
impl RefUnwindSafe for FindingLocation
impl Send for FindingLocation
impl Sync for FindingLocation
impl Unpin for FindingLocation
impl UnsafeUnpin for FindingLocation
impl UnwindSafe for FindingLocation
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