pub struct RegisterMsg {
pub protocol: String,
pub executor_id: ExecutorId,
pub executor_type: String,
}Expand description
First message sent from executor to verify the protocol version, executor ID and executor type.
Fields§
§protocol: StringExecutor protocol version
executor_id: ExecutorIdSUbgovernor ID as assigned to the governor
executor_type: StringExecutor task name prefix in task names
Trait Implementations§
Source§impl Clone for RegisterMsg
impl Clone for RegisterMsg
Source§fn clone(&self) -> RegisterMsg
fn clone(&self) -> RegisterMsg
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 RegisterMsg
impl Debug for RegisterMsg
Source§impl<'de> Deserialize<'de> for RegisterMsg
impl<'de> Deserialize<'de> for RegisterMsg
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
Source§impl PartialEq for RegisterMsg
impl PartialEq for RegisterMsg
Source§impl Serialize for RegisterMsg
impl Serialize for RegisterMsg
impl StructuralPartialEq for RegisterMsg
Auto Trait Implementations§
impl Freeze for RegisterMsg
impl RefUnwindSafe for RegisterMsg
impl Send for RegisterMsg
impl Sync for RegisterMsg
impl Unpin for RegisterMsg
impl UnsafeUnpin for RegisterMsg
impl UnwindSafe for RegisterMsg
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