pub struct ActCall {
pub session_id: String,
pub page_id: String,
pub target: ActTarget,
pub action: Action,
pub before_token: StateToken,
pub args_hash: String,
pub args_redacted: String,
pub group_label: Option<String>,
}Expand description
Inputs to crate::Daemon::act. Bundled into a struct so the
method signature stays one-arg and clippy’s too_many_arguments
lint is satisfied honestly.
Fields§
§session_id: String§page_id: String§target: ActTarget§action: Action§before_token: StateToken§args_hash: String§args_redacted: String§group_label: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ActCall
impl RefUnwindSafe for ActCall
impl Send for ActCall
impl Sync for ActCall
impl Unpin for ActCall
impl UnsafeUnpin for ActCall
impl UnwindSafe for ActCall
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