pub struct Executable<'a> {
pub fields: ComponentFields<'a>,
pub main_is: Option<&'a str>,
}Expand description
An executable component.
Fields§
§fields: ComponentFields<'a>Shared component fields.
main_is: Option<&'a str>main-is value.
Trait Implementations§
Source§impl<'a> Clone for Executable<'a>
impl<'a> Clone for Executable<'a>
Source§fn clone(&self) -> Executable<'a>
fn clone(&self) -> Executable<'a>
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<'a> Debug for Executable<'a>
impl<'a> Debug for Executable<'a>
Source§impl<'a> PartialEq for Executable<'a>
impl<'a> PartialEq for Executable<'a>
Source§fn eq(&self, other: &Executable<'a>) -> bool
fn eq(&self, other: &Executable<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Eq for Executable<'a>
impl<'a> StructuralPartialEq for Executable<'a>
Auto Trait Implementations§
impl<'a> Freeze for Executable<'a>
impl<'a> RefUnwindSafe for Executable<'a>
impl<'a> Send for Executable<'a>
impl<'a> Sync for Executable<'a>
impl<'a> Unpin for Executable<'a>
impl<'a> UnsafeUnpin for Executable<'a>
impl<'a> UnwindSafe for Executable<'a>
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