pub struct FrontendCommand {
pub name: String,
pub arguments: String,
pub description: String,
}Expand description
A frontend command declared by a capability.
Fields§
§name: String§arguments: String§description: StringTrait Implementations§
Source§impl Clone for FrontendCommand
impl Clone for FrontendCommand
Source§fn clone(&self) -> FrontendCommand
fn clone(&self) -> FrontendCommand
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 FrontendCommand
impl Debug for FrontendCommand
Source§impl<'de> Deserialize<'de> for FrontendCommand
impl<'de> Deserialize<'de> for FrontendCommand
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 FrontendCommand
Source§impl PartialEq for FrontendCommand
impl PartialEq for FrontendCommand
Source§impl Serialize for FrontendCommand
impl Serialize for FrontendCommand
impl StructuralPartialEq for FrontendCommand
Auto Trait Implementations§
impl Freeze for FrontendCommand
impl RefUnwindSafe for FrontendCommand
impl Send for FrontendCommand
impl Sync for FrontendCommand
impl Unpin for FrontendCommand
impl UnsafeUnpin for FrontendCommand
impl UnwindSafe for FrontendCommand
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