pub enum A2uiPayload {
CreateSurface(CreateSurfacePayload),
UpdateComponents(UpdateComponentsPayload),
UpdateDataModel(UpdateDataModelPayload),
DeleteSurface(DeleteSurfacePayload),
CallFunction(CallFunctionPayload),
ActionResponse(ActionResponsePayload),
}Expand description
The typed payload of a server-to-client message.
Variants§
CreateSurface(CreateSurfacePayload)
UpdateComponents(UpdateComponentsPayload)
UpdateDataModel(UpdateDataModelPayload)
DeleteSurface(DeleteSurfacePayload)
CallFunction(CallFunctionPayload)
ActionResponse(ActionResponsePayload)
Trait Implementations§
Source§impl Clone for A2uiPayload
impl Clone for A2uiPayload
Source§fn clone(&self) -> A2uiPayload
fn clone(&self) -> A2uiPayload
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 A2uiPayload
impl Debug for A2uiPayload
Source§impl<'de> Deserialize<'de> for A2uiPayload
impl<'de> Deserialize<'de> for A2uiPayload
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
Source§impl PartialEq for A2uiPayload
impl PartialEq for A2uiPayload
Source§fn eq(&self, other: &A2uiPayload) -> bool
fn eq(&self, other: &A2uiPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for A2uiPayload
impl Serialize for A2uiPayload
impl StructuralPartialEq for A2uiPayload
Auto Trait Implementations§
impl Freeze for A2uiPayload
impl RefUnwindSafe for A2uiPayload
impl Send for A2uiPayload
impl Sync for A2uiPayload
impl Unpin for A2uiPayload
impl UnsafeUnpin for A2uiPayload
impl UnwindSafe for A2uiPayload
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