pub struct CommandListEntry {
pub name: String,
pub description: String,
pub tags: Option<Vec<String>>,
pub runner_path: String,
pub readme_path: String,
pub readme_exists: bool,
pub env_keys: Option<Vec<String>>,
}Fields§
§name: String§description: String§runner_path: String§readme_path: String§readme_exists: bool§env_keys: Option<Vec<String>>Trait Implementations§
Source§impl Clone for CommandListEntry
impl Clone for CommandListEntry
Source§fn clone(&self) -> CommandListEntry
fn clone(&self) -> CommandListEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 CommandListEntry
impl Debug for CommandListEntry
Source§impl PartialEq for CommandListEntry
impl PartialEq for CommandListEntry
Source§impl Serialize for CommandListEntry
impl Serialize for CommandListEntry
impl Eq for CommandListEntry
impl StructuralPartialEq for CommandListEntry
Auto Trait Implementations§
impl Freeze for CommandListEntry
impl RefUnwindSafe for CommandListEntry
impl Send for CommandListEntry
impl Sync for CommandListEntry
impl Unpin for CommandListEntry
impl UnsafeUnpin for CommandListEntry
impl UnwindSafe for CommandListEntry
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