pub struct MessageId(pub [u8; 32]);Expand description
Message identifier.
Gear allows users and programs to interact with other users and programs via
messages. Each message has its unique 256-bit identifier. The MessageId
struct represents this identifier. One can get the message identifier for
the currently processing message using the msg::id
function. Also, each send and reply functions return a message identifier.
Examples
use gcore::msg;
#[no_mangle]
extern "C" fn handle() {
let current_message_id = msg::id();
}Tuple Fields§
§0: [u8; 32]Implementations§
Trait Implementations§
source§impl Ord for MessageId
impl Ord for MessageId
source§impl PartialEq for MessageId
impl PartialEq for MessageId
source§impl PartialOrd for MessageId
impl PartialOrd for MessageId
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for MessageId
impl Eq for MessageId
impl StructuralEq for MessageId
impl StructuralPartialEq for MessageId
Auto Trait Implementations§
impl RefUnwindSafe for MessageId
impl Send for MessageId
impl Sync for MessageId
impl Unpin for MessageId
impl UnwindSafe for MessageId
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