pub struct ProcessedCheckInResult {
pub routing_hint: Uuid,
pub payload: Vec<u8>,
}
Expand description
The result from calling process_check_in
Fields§
§routing_hint: Uuid
The routing key to be used for the check-in payload.
Important to help ensure monitor check-ins are processed in order by routing check-ins from the same monitor to the same place.
payload: Vec<u8>
The JSON payload of the processed check-in.
Auto Trait Implementations§
impl Freeze for ProcessedCheckInResult
impl RefUnwindSafe for ProcessedCheckInResult
impl Send for ProcessedCheckInResult
impl Sync for ProcessedCheckInResult
impl Unpin for ProcessedCheckInResult
impl UnwindSafe for ProcessedCheckInResult
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