pub enum SidecarResponsePayload {
HostCallbackResult(HostCallbackResultResponse),
JsBridgeResult(JsBridgeResultResponse),
ExtResult(ExtEnvelope),
}Variants§
HostCallbackResult(HostCallbackResultResponse)
JsBridgeResult(JsBridgeResultResponse)
ExtResult(ExtEnvelope)
Trait Implementations§
Source§impl Clone for SidecarResponsePayload
impl Clone for SidecarResponsePayload
Source§fn clone(&self) -> SidecarResponsePayload
fn clone(&self) -> SidecarResponsePayload
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 SidecarResponsePayload
impl Debug for SidecarResponsePayload
Source§impl<'de> Deserialize<'de> for SidecarResponsePayload
impl<'de> Deserialize<'de> for SidecarResponsePayload
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
impl Eq for SidecarResponsePayload
Source§impl PartialEq for SidecarResponsePayload
impl PartialEq for SidecarResponsePayload
Source§fn eq(&self, other: &SidecarResponsePayload) -> bool
fn eq(&self, other: &SidecarResponsePayload) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SidecarResponsePayload
impl Serialize for SidecarResponsePayload
impl StructuralPartialEq for SidecarResponsePayload
Auto Trait Implementations§
impl Freeze for SidecarResponsePayload
impl RefUnwindSafe for SidecarResponsePayload
impl Send for SidecarResponsePayload
impl Sync for SidecarResponsePayload
impl Unpin for SidecarResponsePayload
impl UnsafeUnpin for SidecarResponsePayload
impl UnwindSafe for SidecarResponsePayload
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