pub struct Reply {
pub request_id: u32,
pub reply_status: ReplyStatusType,
pub service_context: ServiceContextList,
pub body: Vec<u8>,
}Expand description
Reply-Message-Body.
Fields§
§request_id: u32request_id.
reply_status: ReplyStatusTypeReply-Status-Discriminator.
service_context: ServiceContextListservice_context_list.
body: Vec<u8>Body-Bytes (CDR-encoded out/return/Exception-Inhalt).
In GIOP 1.2 8-Byte-aligned ab Header-Start.
Implementations§
Source§impl Reply
impl Reply
Sourcepub fn encode(&self, version: Version, w: &mut BufferWriter) -> GiopResult<()>
pub fn encode(&self, version: Version, w: &mut BufferWriter) -> GiopResult<()>
Sourcepub fn decode(version: Version, r: &mut BufferReader<'_>) -> GiopResult<Self>
pub fn decode(version: Version, r: &mut BufferReader<'_>) -> GiopResult<Self>
Trait Implementations§
impl Eq for Reply
impl StructuralPartialEq for Reply
Auto Trait Implementations§
impl Freeze for Reply
impl RefUnwindSafe for Reply
impl Send for Reply
impl Sync for Reply
impl Unpin for Reply
impl UnsafeUnpin for Reply
impl UnwindSafe for Reply
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