pub struct NodeWaitFreezesDetail {
pub task_id: i64,
pub wf_id: i64,
pub name: String,
pub phase: String,
pub roi: Rect,
pub param: Value,
pub reco_ids: Vec<i64>,
pub elapsed: Option<u64>,
pub focus: Value,
}Expand description
Node wait-freezes event detail.
Fields§
§task_id: i64Task ID
wf_id: i64Wait-freezes ID
name: StringNode name
phase: StringPhase name
roi: RectROI
param: ValueWait-freezes parameters
reco_ids: Vec<i64>Related recognition IDs
elapsed: Option<u64>Elapsed time in ms
focus: ValueFocus configuration
Trait Implementations§
Source§impl Clone for NodeWaitFreezesDetail
impl Clone for NodeWaitFreezesDetail
Source§fn clone(&self) -> NodeWaitFreezesDetail
fn clone(&self) -> NodeWaitFreezesDetail
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 NodeWaitFreezesDetail
impl Debug for NodeWaitFreezesDetail
Source§impl<'de> Deserialize<'de> for NodeWaitFreezesDetail
impl<'de> Deserialize<'de> for NodeWaitFreezesDetail
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 NodeWaitFreezesDetail
impl RefUnwindSafe for NodeWaitFreezesDetail
impl Send for NodeWaitFreezesDetail
impl Sync for NodeWaitFreezesDetail
impl Unpin for NodeWaitFreezesDetail
impl UnsafeUnpin for NodeWaitFreezesDetail
impl UnwindSafe for NodeWaitFreezesDetail
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