#[repr(C)]pub struct UA_PublishResponse {
pub responseHeader: UA_ResponseHeader,
pub subscriptionId: UA_UInt32,
pub availableSequenceNumbersSize: usize,
pub availableSequenceNumbers: *mut UA_UInt32,
pub moreNotifications: UA_Boolean,
pub notificationMessage: UA_NotificationMessage,
pub resultsSize: usize,
pub results: *mut UA_StatusCode,
pub diagnosticInfosSize: usize,
pub diagnosticInfos: *mut UA_DiagnosticInfo,
}Fields§
§responseHeader: UA_ResponseHeader§subscriptionId: UA_UInt32§availableSequenceNumbersSize: usize§availableSequenceNumbers: *mut UA_UInt32§moreNotifications: UA_Boolean§notificationMessage: UA_NotificationMessage§resultsSize: usize§results: *mut UA_StatusCode§diagnosticInfosSize: usize§diagnosticInfos: *mut UA_DiagnosticInfoTrait Implementations§
Auto Trait Implementations§
impl Freeze for UA_PublishResponse
impl RefUnwindSafe for UA_PublishResponse
impl !Send for UA_PublishResponse
impl !Sync for UA_PublishResponse
impl Unpin for UA_PublishResponse
impl UnwindSafe for UA_PublishResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more