pub struct ExecutionNode {
pub id: String,
pub device: String,
}Expand description
One execution node on a device/host.
Fields§
§id: StringNode id.
device: StringDevice or host label.
Trait Implementations§
Source§impl Clone for ExecutionNode
impl Clone for ExecutionNode
Source§fn clone(&self) -> ExecutionNode
fn clone(&self) -> ExecutionNode
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 ExecutionNode
impl Debug for ExecutionNode
Source§impl Hash for ExecutionNode
impl Hash for ExecutionNode
Source§impl PartialEq for ExecutionNode
impl PartialEq for ExecutionNode
Source§fn eq(&self, other: &ExecutionNode) -> bool
fn eq(&self, other: &ExecutionNode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExecutionNode
impl StructuralPartialEq for ExecutionNode
Auto Trait Implementations§
impl Freeze for ExecutionNode
impl RefUnwindSafe for ExecutionNode
impl Send for ExecutionNode
impl Sync for ExecutionNode
impl Unpin for ExecutionNode
impl UnsafeUnpin for ExecutionNode
impl UnwindSafe for ExecutionNode
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