pub struct RelayAcknowledgement {
pub acknowledged: bool,
pub request_id: Uuid,
pub request: Value,
}Fields§
§acknowledged: bool§request_id: Uuid§request: ValueExact original JSON supplied to the local relay.
Trait Implementations§
Source§impl Clone for RelayAcknowledgement
impl Clone for RelayAcknowledgement
Source§fn clone(&self) -> RelayAcknowledgement
fn clone(&self) -> RelayAcknowledgement
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 RelayAcknowledgement
impl Debug for RelayAcknowledgement
Source§impl<'de> Deserialize<'de> for RelayAcknowledgement
impl<'de> Deserialize<'de> for RelayAcknowledgement
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
Auto Trait Implementations§
impl Freeze for RelayAcknowledgement
impl RefUnwindSafe for RelayAcknowledgement
impl Send for RelayAcknowledgement
impl Sync for RelayAcknowledgement
impl Unpin for RelayAcknowledgement
impl UnsafeUnpin for RelayAcknowledgement
impl UnwindSafe for RelayAcknowledgement
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