pub struct FrameAction {
pub action: Option<Action>,
pub update_ui: bool,
}Expand description
Result of processing a server frame - includes optional action and whether to update UI.
Fields§
§action: Option<Action>§update_ui: boolImplementations§
Auto Trait Implementations§
impl Freeze for FrameAction
impl RefUnwindSafe for FrameAction
impl Send for FrameAction
impl Sync for FrameAction
impl Unpin for FrameAction
impl UnsafeUnpin for FrameAction
impl UnwindSafe for FrameAction
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