#[repr(C, packed(2))]pub struct DeviceNode {
pub dn_Next: BPTR,
pub dn_Type: ULONG,
pub dn_Task: *mut MsgPort,
pub dn_Lock: BPTR,
pub dn_Handler: BSTR,
pub dn_StackSize: ULONG,
pub dn_Priority: LONG,
pub dn_Startup: BPTR,
pub dn_SegList: BPTR,
pub dn_GlobalVec: BPTR,
pub dn_Name: BSTR,
}Fields§
§dn_Next: BPTR§dn_Type: ULONG§dn_Task: *mut MsgPort§dn_Lock: BPTR§dn_Handler: BSTR§dn_StackSize: ULONG§dn_Priority: LONG§dn_Startup: BPTR§dn_SegList: BPTR§dn_GlobalVec: BPTR§dn_Name: BSTRTrait Implementations§
Source§impl Clone for DeviceNode
impl Clone for DeviceNode
Source§fn clone(&self) -> DeviceNode
fn clone(&self) -> DeviceNode
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 DeviceNode
impl Debug for DeviceNode
impl Copy for DeviceNode
Auto Trait Implementations§
impl Freeze for DeviceNode
impl RefUnwindSafe for DeviceNode
impl !Send for DeviceNode
impl !Sync for DeviceNode
impl Unpin for DeviceNode
impl UnwindSafe for DeviceNode
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