Struct PSR

Source
pub struct PSR {
Show 13 fields pub cont_flg: B1, pub psr_indx: U2, pub psr_nam: Cn, pub opt_flg: B1, pub totp_cnt: U2, pub locp_cnt: U2, pub pat_bgn: KxU8, pub pat_end: KxU8, pub pat_file: KxCn, pub pat_lbl: KxCn, pub file_uid: KxCn, pub atpg_dsc: KxCn, pub src_id: KxCn,
}

Fields§

§cont_flg: B1§psr_indx: U2§psr_nam: Cn§opt_flg: B1§totp_cnt: U2§locp_cnt: U2§pat_bgn: KxU8§pat_end: KxU8§pat_file: KxCn§pat_lbl: KxCn§file_uid: KxCn§atpg_dsc: KxCn§src_id: KxCn

Implementations§

Source§

impl PSR

Source

pub fn new() -> Self

Source

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

Trait Implementations§

Source§

impl Clone for PSR

Source§

fn clone(&self) -> PSR

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 PSR

Source§

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

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

impl Default for PSR

Source§

fn default() -> Self

Return PSR { cont_flg: Default::default(), psr_indx: Default::default(), psr_nam: Default::default(), opt_flg: Default::default(), totp_cnt: Default::default(), locp_cnt: Default::default(), pat_bgn: Default::default(), pat_end: Default::default(), pat_file: Default::default(), pat_lbl: Default::default(), file_uid: Default::default(), atpg_dsc: Default::default(), src_id: Default::default() }

Source§

impl PartialEq for PSR

Source§

fn eq(&self, other: &PSR) -> 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 PSR

Source§

impl StructuralPartialEq for PSR

Auto Trait Implementations§

§

impl Freeze for PSR

§

impl RefUnwindSafe for PSR

§

impl Send for PSR

§

impl Sync for PSR

§

impl Unpin for PSR

§

impl UnwindSafe for PSR

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.