pub struct SystemPopupActionRequest {
pub popup_id: String,
pub button_id: String,
}Expand description
POST /system-popup-action request body (v4.2 c2 — G9 act side).
popupId and buttonId round-trip from a prior GET /system-popups
enumerate (Popup.id / PopupButton.id fields). The runner walks the
same scan order on the act path, so callers do not need to maintain an
out-of-band id map.
Fields§
§popup_id: StringPopup id from a prior Popup.id enumerate.
Button id from a prior PopupButton.id enumerate.
Trait Implementations§
Source§impl Clone for SystemPopupActionRequest
impl Clone for SystemPopupActionRequest
Source§fn clone(&self) -> SystemPopupActionRequest
fn clone(&self) -> SystemPopupActionRequest
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 SystemPopupActionRequest
impl Debug for SystemPopupActionRequest
Source§impl<'de> Deserialize<'de> for SystemPopupActionRequest
impl<'de> Deserialize<'de> for SystemPopupActionRequest
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 SystemPopupActionRequest
impl RefUnwindSafe for SystemPopupActionRequest
impl Send for SystemPopupActionRequest
impl Sync for SystemPopupActionRequest
impl Unpin for SystemPopupActionRequest
impl UnsafeUnpin for SystemPopupActionRequest
impl UnwindSafe for SystemPopupActionRequest
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