Struct MIR

Source
pub struct MIR {
Show 38 fields pub setup_t: U4, pub start_t: U4, pub stat_num: U1, pub mode_cod: C1, pub rtst_cod: C1, pub prot_cod: C1, pub burn_tim: U2, pub cmod_cod: C1, pub lot_id: Cn, pub part_typ: Cn, pub node_nam: Cn, pub tstr_typ: Cn, pub job_nam: Cn, pub job_rev: Cn, pub sblot_id: Cn, pub oper_nam: Cn, pub exec_typ: Cn, pub exec_ver: Cn, pub test_cod: Cn, pub tst_temp: Cn, pub user_txt: Cn, pub aux_file: Cn, pub pkg_typ: Cn, pub famly_id: Cn, pub date_cod: Cn, pub facil_id: Cn, pub floor_id: Cn, pub proc_id: Cn, pub oper_frq: Cn, pub spec_nam: Cn, pub spec_ver: Cn, pub flow_id: Cn, pub setup_id: Cn, pub dsgn_rev: Cn, pub eng_id: Cn, pub rom_cod: Cn, pub serl_num: Cn, pub supr_nam: Cn,
}

Fields§

§setup_t: U4§start_t: U4§stat_num: U1§mode_cod: C1§rtst_cod: C1§prot_cod: C1§burn_tim: U2§cmod_cod: C1§lot_id: Cn§part_typ: Cn§node_nam: Cn§tstr_typ: Cn§job_nam: Cn§job_rev: Cn§sblot_id: Cn§oper_nam: Cn§exec_typ: Cn§exec_ver: Cn§test_cod: Cn§tst_temp: Cn§user_txt: Cn§aux_file: Cn§pkg_typ: Cn§famly_id: Cn§date_cod: Cn§facil_id: Cn§floor_id: Cn§proc_id: Cn§oper_frq: Cn§spec_nam: Cn§spec_ver: Cn§flow_id: Cn§setup_id: Cn§dsgn_rev: Cn§eng_id: Cn§rom_cod: Cn§serl_num: Cn§supr_nam: Cn

Implementations§

Source§

impl MIR

Source

pub fn new() -> Self

Source

pub fn read_from_bytes(&mut self, raw_data: &[u8], order: &ByteOrder)

Trait Implementations§

Source§

impl Clone for MIR

Source§

fn clone(&self) -> MIR

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for MIR

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for MIR

Source§

fn default() -> Self

Return MIR { setup_t: Default::default(), start_t: Default::default(), stat_num: Default::default(), mode_cod: ' ', rtst_cod: ' ', prot_cod: ' ', burn_tim: 65535, cmod_cod: ' ', lot_id: Default::default(), part_typ: Default::default(), node_nam: Default::default(), tstr_typ: Default::default(), job_nam: Default::default(), job_rev: Default::default(), sblot_id: Default::default(), oper_nam: Default::default(), exec_typ: Default::default(), exec_ver: Default::default(), test_cod: Default::default(), tst_temp: Default::default(), user_txt: Default::default(), aux_file: Default::default(), pkg_typ: Default::default(), famly_id: Default::default(), date_cod: Default::default(), facil_id: Default::default(), floor_id: Default::default(), proc_id: Default::default(), oper_frq: Default::default(), spec_nam: Default::default(), spec_ver: Default::default(), flow_id: Default::default(), setup_id: Default::default(), dsgn_rev: Default::default(), eng_id: Default::default(), rom_cod: Default::default(), serl_num: Default::default(), supr_nam: Default::default() }

Source§

impl PartialEq for MIR

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

impl Eq for MIR

Source§

impl StructuralPartialEq for MIR

Auto Trait Implementations§

§

impl Freeze for MIR

§

impl RefUnwindSafe for MIR

§

impl Send for MIR

§

impl Sync for MIR

§

impl Unpin for MIR

§

impl UnwindSafe for MIR

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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>,

Source§

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>,

Source§

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.