pub struct ExecutorInfo {
pub name: String,
pub protocol: u32,
}Expand description
Who a provider says it is, established once before any job.
Fields§
§name: StringProvider name, for reports and for operator diagnosis.
protocol: u32Protocol version the provider speaks. Must equal PROTOCOL.
Trait Implementations§
Source§impl Clone for ExecutorInfo
impl Clone for ExecutorInfo
Source§fn clone(&self) -> ExecutorInfo
fn clone(&self) -> ExecutorInfo
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 ExecutorInfo
impl Debug for ExecutorInfo
Source§impl PartialEq for ExecutorInfo
impl PartialEq for ExecutorInfo
Source§fn eq(&self, other: &ExecutorInfo) -> bool
fn eq(&self, other: &ExecutorInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExecutorInfo
impl StructuralPartialEq for ExecutorInfo
Auto Trait Implementations§
impl Freeze for ExecutorInfo
impl RefUnwindSafe for ExecutorInfo
impl Send for ExecutorInfo
impl Sync for ExecutorInfo
impl Unpin for ExecutorInfo
impl UnsafeUnpin for ExecutorInfo
impl UnwindSafe for ExecutorInfo
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