pub struct HelloMessage {
pub hello: u32,
pub id: u32,
}
Expand description
Initial handshake message sent to the model process.
This message is sent when establishing communication with the model to initialize the connection and receive model information.
Fields§
§hello: u32
Protocol version number
id: u32
Unique message identifier
Trait Implementations§
Source§impl Debug for HelloMessage
impl Debug for HelloMessage
Auto Trait Implementations§
impl Freeze for HelloMessage
impl RefUnwindSafe for HelloMessage
impl Send for HelloMessage
impl Sync for HelloMessage
impl Unpin for HelloMessage
impl UnwindSafe for HelloMessage
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