pub struct FrontendAction {
pub id: String,
pub label: String,
pub symbol: FrontendSymbol,
pub tone: FrontendTone,
pub op: Op,
pub editor: Option<FrontendEditor>,
}Expand description
One labeled, icon-forward action attached to a list item.
Fields§
§id: String§label: String§symbol: FrontendSymbol§tone: FrontendTone§op: Op§editor: Option<FrontendEditor>Optional capability-owned copy for editing input before submitting the action.
Trait Implementations§
Source§impl Clone for FrontendAction
impl Clone for FrontendAction
Source§fn clone(&self) -> FrontendAction
fn clone(&self) -> FrontendAction
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 FrontendAction
impl Debug for FrontendAction
Source§impl<'de> Deserialize<'de> for FrontendAction
impl<'de> Deserialize<'de> for FrontendAction
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
impl Eq for FrontendAction
Source§impl PartialEq for FrontendAction
impl PartialEq for FrontendAction
Source§impl Serialize for FrontendAction
impl Serialize for FrontendAction
impl StructuralPartialEq for FrontendAction
Auto Trait Implementations§
impl Freeze for FrontendAction
impl RefUnwindSafe for FrontendAction
impl Send for FrontendAction
impl Sync for FrontendAction
impl Unpin for FrontendAction
impl UnsafeUnpin for FrontendAction
impl UnwindSafe for FrontendAction
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.