#[repr(C)]
pub struct GET_CHANGER_PARAMETERS {
Show 28 fields pub Size: u32, pub NumberTransportElements: u16, pub NumberStorageElements: u16, pub NumberCleanerSlots: u16, pub NumberIEElements: u16, pub NumberDataTransferElements: u16, pub NumberOfDoors: u16, pub FirstSlotNumber: u16, pub FirstDriveNumber: u16, pub FirstTransportNumber: u16, pub FirstIEPortNumber: u16, pub FirstCleanerSlotAddress: u16, pub MagazineSize: u16, pub DriveCleanTimeout: u32, pub Features0: CHANGER_FEATURES, pub Features1: GET_CHANGER_PARAMETERS_FEATURES1, pub MoveFromTransport: u8, pub MoveFromSlot: u8, pub MoveFromIePort: u8, pub MoveFromDrive: u8, pub ExchangeFromTransport: u8, pub ExchangeFromSlot: u8, pub ExchangeFromIePort: u8, pub ExchangeFromDrive: u8, pub LockUnlockCapabilities: u8, pub PositionCapabilities: u8, pub Reserved1: [u8; 2], pub Reserved2: [u32; 2],
}

Fields§

§Size: u32§NumberTransportElements: u16§NumberStorageElements: u16§NumberCleanerSlots: u16§NumberIEElements: u16§NumberDataTransferElements: u16§NumberOfDoors: u16§FirstSlotNumber: u16§FirstDriveNumber: u16§FirstTransportNumber: u16§FirstIEPortNumber: u16§FirstCleanerSlotAddress: u16§MagazineSize: u16§DriveCleanTimeout: u32§Features0: CHANGER_FEATURES§Features1: GET_CHANGER_PARAMETERS_FEATURES1§MoveFromTransport: u8§MoveFromSlot: u8§MoveFromIePort: u8§MoveFromDrive: u8§ExchangeFromTransport: u8§ExchangeFromSlot: u8§ExchangeFromIePort: u8§ExchangeFromDrive: u8§LockUnlockCapabilities: u8§PositionCapabilities: u8§Reserved1: [u8; 2]§Reserved2: [u32; 2]

Trait Implementations§

§

impl Clone for GET_CHANGER_PARAMETERS

§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for GET_CHANGER_PARAMETERS

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for GET_CHANGER_PARAMETERS

§

fn default() -> Self

Returns the “default value” for a type. Read more
§

impl PartialEq for GET_CHANGER_PARAMETERS

§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for GET_CHANGER_PARAMETERS

§

impl Eq for GET_CHANGER_PARAMETERS

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.