pub struct EntryPoint {
pub name: u32,
pub target_entry: u32,
pub args: u32,
pub working_dir: WorkingDir,
pub flags: EntryPointFlags,
}Fields§
§name: u32Offset into the string table for this entrypoint’s name.
target_entry: u32Index of the filesystem entry this entrypoint executes.
args: u32Offset into the string table for the argument string.
working_dir: WorkingDirWorking directory strategy when launching this entrypoint.
flags: EntryPointFlagsBehavioral flags for this entrypoint.
Implementations§
Trait Implementations§
Source§impl Clone for EntryPoint
impl Clone for EntryPoint
Source§fn clone(&self) -> EntryPoint
fn clone(&self) -> EntryPoint
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 moreAuto Trait Implementations§
impl Freeze for EntryPoint
impl RefUnwindSafe for EntryPoint
impl Send for EntryPoint
impl Sync for EntryPoint
impl Unpin for EntryPoint
impl UnsafeUnpin for EntryPoint
impl UnwindSafe for EntryPoint
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