pub struct FlowGateResource {
pub id: ResourceId,
pub kind: ResourceKind,
pub phase: FlowPhase,
pub gates_passed: Vec<GateId>,
}Expand description
Resource facts projected from the current flow state.
Fields§
§id: ResourceId§kind: ResourceKind§phase: FlowPhase§gates_passed: Vec<GateId>Trait Implementations§
Source§impl Clone for FlowGateResource
impl Clone for FlowGateResource
Source§fn clone(&self) -> FlowGateResource
fn clone(&self) -> FlowGateResource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FlowGateResource
impl Debug for FlowGateResource
Source§impl<'de> Deserialize<'de> for FlowGateResource
impl<'de> Deserialize<'de> for FlowGateResource
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FlowGateResource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FlowGateResource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FlowGateResource
impl PartialEq for FlowGateResource
Source§fn eq(&self, other: &FlowGateResource) -> bool
fn eq(&self, other: &FlowGateResource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FlowGateResource
impl Serialize for FlowGateResource
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for FlowGateResource
impl StructuralPartialEq for FlowGateResource
Auto Trait Implementations§
impl Freeze for FlowGateResource
impl RefUnwindSafe for FlowGateResource
impl Send for FlowGateResource
impl Sync for FlowGateResource
impl Unpin for FlowGateResource
impl UnsafeUnpin for FlowGateResource
impl UnwindSafe for FlowGateResource
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.