pub struct EventAckData {
pub status: &'static str,
pub message: String,
}
Expand description
Event ack message type
Found it in other programming language’s SDK, not found in any official document though.
Fields§
§status: &'static str
§message: String
Implementations§
Trait Implementations§
Source§impl Default for EventAckData
impl Default for EventAckData
Auto Trait Implementations§
impl Freeze for EventAckData
impl RefUnwindSafe for EventAckData
impl Send for EventAckData
impl Sync for EventAckData
impl Unpin for EventAckData
impl UnwindSafe for EventAckData
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