pub struct FlowGateResource {
pub id: String,
pub kind: String,
pub phase: String,
pub gates_passed: Vec<String>,
}Expand description
Resource facts projected from the current flow state.
Fields§
§id: String§kind: String§phase: String§gates_passed: Vec<String>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 · 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<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
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