Struct MQIEP

Source
#[repr(C)]
pub struct MQIEP {
Show 35 fields pub StrucId: MQCHAR4, pub Version: MQLONG, pub StrucLength: MQLONG, pub Flags: MQLONG, pub Reserved: MQPTR, pub MQBACK_Call: PMQ_BACK_CALL, pub MQBEGIN_Call: PMQ_BEGIN_CALL, pub MQBUFMH_Call: PMQ_BUFMH_CALL, pub MQCB_Call: PMQ_CB_CALL, pub MQCLOSE_Call: PMQ_CLOSE_CALL, pub MQCMIT_Call: PMQ_CMIT_CALL, pub MQCONN_Call: PMQ_CONN_CALL, pub MQCONNX_Call: PMQ_CONNX_CALL, pub MQCRTMH_Call: PMQ_CRTMH_CALL, pub MQCTL_Call: PMQ_CTL_CALL, pub MQDISC_Call: PMQ_DISC_CALL, pub MQDLTMH_Call: PMQ_DLTMH_CALL, pub MQDLTMP_Call: PMQ_DLTMP_CALL, pub MQGET_Call: PMQ_GET_CALL, pub MQINQ_Call: PMQ_INQ_CALL, pub MQINQMP_Call: PMQ_INQMP_CALL, pub MQMHBUF_Call: PMQ_MHBUF_CALL, pub MQOPEN_Call: PMQ_OPEN_CALL, pub MQPUT_Call: PMQ_PUT_CALL, pub MQPUT1_Call: PMQ_PUT1_CALL, pub MQSET_Call: PMQ_SET_CALL, pub MQSETMP_Call: PMQ_SETMP_CALL, pub MQSTAT_Call: PMQ_STAT_CALL, pub MQSUB_Call: PMQ_SUB_CALL, pub MQSUBRQ_Call: PMQ_SUBRQ_CALL, pub MQXCLWLN_Call: PMQ_XCLWLN_CALL, pub MQXCNVC_Call: PMQ_XCNVC_CALL, pub MQXDX_Call: PMQ_XDX_CALL, pub MQXEP_Call: PMQ_XEP_CALL, pub MQZEP_Call: PMQ_ZEP_CALL,
}
Available on crate feature exits only.
Expand description

Interface Entry Points

§References

Fields§

§StrucId: MQCHAR4

Structure identifier

§Version: MQLONG

Structure version number

§StrucLength: MQLONG

Length of MQIEP structure

§Flags: MQLONG

Flags containing information about the interface entry points

§Reserved: MQPTR

Reserved

§MQBACK_Call: PMQ_BACK_CALL

MQBACK entry point

§MQBEGIN_Call: PMQ_BEGIN_CALL

MQBEGIN entry point

§MQBUFMH_Call: PMQ_BUFMH_CALL

MQBUFMH entry point

§MQCB_Call: PMQ_CB_CALL

MQCB entry point

§MQCLOSE_Call: PMQ_CLOSE_CALL

MQCLOSE entry point

§MQCMIT_Call: PMQ_CMIT_CALL

MQCMIT entry point

§MQCONN_Call: PMQ_CONN_CALL

MQCONN entry point

§MQCONNX_Call: PMQ_CONNX_CALL

MQCONNX entry point

§MQCRTMH_Call: PMQ_CRTMH_CALL

MQCRTMH entry point

§MQCTL_Call: PMQ_CTL_CALL

MQCTL entry point

§MQDISC_Call: PMQ_DISC_CALL

MQDISC entry point

§MQDLTMH_Call: PMQ_DLTMH_CALL

MQDLTMH entry point

§MQDLTMP_Call: PMQ_DLTMP_CALL

MQDLTMP entry point

§MQGET_Call: PMQ_GET_CALL

MQGET entry point

§MQINQ_Call: PMQ_INQ_CALL

MQINQ entry point

§MQINQMP_Call: PMQ_INQMP_CALL

MQINQMP entry point

§MQMHBUF_Call: PMQ_MHBUF_CALL

MQMHBUF entry point

§MQOPEN_Call: PMQ_OPEN_CALL

MQOPEN entry point

§MQPUT_Call: PMQ_PUT_CALL

MQPUT entry point

§MQPUT1_Call: PMQ_PUT1_CALL

MQPUT1 entry point

§MQSET_Call: PMQ_SET_CALL

MQSET entry point

§MQSETMP_Call: PMQ_SETMP_CALL

MQSETMP entry point

§MQSTAT_Call: PMQ_STAT_CALL

MQSTAT entry point

§MQSUB_Call: PMQ_SUB_CALL

MQSUB entry point

§MQSUBRQ_Call: PMQ_SUBRQ_CALL

MQSUBRQ entry point

§MQXCLWLN_Call: PMQ_XCLWLN_CALL

MQXCLWLN entry point

§MQXCNVC_Call: PMQ_XCNVC_CALL

MQXCNVC entry point

§MQXDX_Call: PMQ_XDX_CALL

MQXDX entry point

§MQXEP_Call: PMQ_XEP_CALL

MQXEP entry point

§MQZEP_Call: PMQ_ZEP_CALL

MQZEP entry point

Trait Implementations§

Source§

impl Clone for MQIEP

Source§

fn clone(&self) -> MQIEP

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 MQIEP

Source§

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

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

impl Copy for MQIEP

Auto Trait Implementations§

§

impl Freeze for MQIEP

§

impl RefUnwindSafe for MQIEP

§

impl !Send for MQIEP

§

impl !Sync for MQIEP

§

impl Unpin for MQIEP

§

impl UnwindSafe for MQIEP

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.