pub struct NodeExecutionStatus {
pub node_id: Option<String>,
pub node_type: Option<String>,
pub execution_id: Option<String>,
pub state: Option<String>,
pub query_id: Option<i64>,
pub matview_name: Option<String>,
}Expand description
Node execution status
Fields§
§node_id: Option<String>Node ID
node_type: Option<String>Node type
execution_id: Option<String>Execution ID
state: Option<String>State
query_id: Option<i64>Query ID
matview_name: Option<String>Materialized view name
Trait Implementations§
Source§impl Clone for NodeExecutionStatus
impl Clone for NodeExecutionStatus
Source§fn clone(&self) -> NodeExecutionStatus
fn clone(&self) -> NodeExecutionStatus
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 NodeExecutionStatus
impl Debug for NodeExecutionStatus
Source§impl<'de> Deserialize<'de> for NodeExecutionStatus
impl<'de> Deserialize<'de> for NodeExecutionStatus
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 NodeExecutionStatus
impl RefUnwindSafe for NodeExecutionStatus
impl Send for NodeExecutionStatus
impl Sync for NodeExecutionStatus
impl Unpin for NodeExecutionStatus
impl UnwindSafe for NodeExecutionStatus
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