pub struct FPGetAPPL {
pub dt_ref_num: u16,
pub file_creator: [u8; 4],
pub appl_index: u16,
}Expand description
FPGetAPPL: retrieve a registered application by creator and 1-based index.
Wire layout (buf = data[2..], after command + pad): [0..2] DTRefNum [2..6] FileCreator (4-byte OSType) [6..8] APPLIndex (u16, 1-based)
Response: Tag(4) + DirectoryID(4) + PathType(1) + Pathname
Fields§
§dt_ref_num: u16§file_creator: [u8; 4]§appl_index: u16Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FPGetAPPL
impl RefUnwindSafe for FPGetAPPL
impl Send for FPGetAPPL
impl Sync for FPGetAPPL
impl Unpin for FPGetAPPL
impl UnsafeUnpin for FPGetAPPL
impl UnwindSafe for FPGetAPPL
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