Struct MQSTS

Source
#[repr(C)]
pub struct MQSTS {
Show 16 fields pub StrucId: MQCHAR4, pub Version: MQLONG, pub CompCode: MQLONG, pub Reason: MQLONG, pub PutSuccessCount: MQLONG, pub PutWarningCount: MQLONG, pub PutFailureCount: MQLONG, pub ObjectType: MQLONG, pub ObjectName: MQCHAR48, pub ObjectQMgrName: MQCHAR48, pub ResolvedObjectName: MQCHAR48, pub ResolvedQMgrName: MQCHAR48, pub ObjectString: MQCHARV, pub SubName: MQCHARV, pub OpenOptions: MQLONG, pub SubOptions: MQLONG,
}
Expand description

Status Information Record

§References

Fields§

§StrucId: MQCHAR4

Structure identifier

§Version: MQLONG

Structure version number

§CompCode: MQLONG

Completion Code of first error

§Reason: MQLONG

Reason Code of first error

§PutSuccessCount: MQLONG

Number of Async put calls succeeded

§PutWarningCount: MQLONG

Number of Async put calls had warnings

§PutFailureCount: MQLONG

Number of Async put calls had failures

§ObjectType: MQLONG

Failing object type

§ObjectName: MQCHAR48

Failing object name

§ObjectQMgrName: MQCHAR48

Failing object queue manager

§ResolvedObjectName: MQCHAR48

Resolved name of destination queue

§ResolvedQMgrName: MQCHAR48

Resolved name of destination qmgr

§ObjectString: MQCHARV

Failing object long name

MQSTS::Version >= 2

§SubName: MQCHARV

Failing subscription name

MQSTS::Version >= 2

§OpenOptions: MQLONG

Failing open options

MQSTS::Version >= 2

§SubOptions: MQLONG

Failing subscription options

MQSTS::Version >= 2

Trait Implementations§

Source§

impl Clone for MQSTS

Source§

fn clone(&self) -> MQSTS

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 MQSTS

Source§

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

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

impl Copy for MQSTS

Auto Trait Implementations§

§

impl Freeze for MQSTS

§

impl RefUnwindSafe for MQSTS

§

impl !Send for MQSTS

§

impl !Sync for MQSTS

§

impl Unpin for MQSTS

§

impl UnwindSafe for MQSTS

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.