pub struct ResolvedAction {
pub label: String,
pub bytes_decoded: Vec<u8>,
pub group: Option<String>,
pub description: Option<String>,
}Expand description
One Action after byte-escape decoding and CLI-override merging.
bytes_decoded is the raw byte sequence written to guest stdin when
the button is clicked; the original TOML bytes string is not kept.
Fields§
§label: String§bytes_decoded: Vec<u8>§group: Option<String>§description: Option<String>Trait Implementations§
Source§impl Clone for ResolvedAction
impl Clone for ResolvedAction
Source§fn clone(&self) -> ResolvedAction
fn clone(&self) -> ResolvedAction
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 ResolvedAction
impl Debug for ResolvedAction
Source§impl PartialEq for ResolvedAction
impl PartialEq for ResolvedAction
Source§fn eq(&self, other: &ResolvedAction) -> bool
fn eq(&self, other: &ResolvedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ResolvedAction
impl StructuralPartialEq for ResolvedAction
Auto Trait Implementations§
impl Freeze for ResolvedAction
impl RefUnwindSafe for ResolvedAction
impl Send for ResolvedAction
impl Sync for ResolvedAction
impl Unpin for ResolvedAction
impl UnsafeUnpin for ResolvedAction
impl UnwindSafe for ResolvedAction
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