pub struct WrapRequest {
pub topic: String,
pub kind: WrapperKind,
pub inner: Bytes,
pub message_type_enum: String,
pub shell: WrapShell,
pub destination_routing: String,
pub originator_uuid: Option<String>,
pub specific_destination_uuids: Vec<String>,
pub timestamp: String,
pub priority: u16,
pub precedence: u16,
}Expand description
Inputs for building an Rx or Tx wrapper around an inner UCI payload.
Fields§
§topic: String§kind: WrapperKind§inner: Bytes§message_type_enum: String§shell: WrapShell§destination_routing: String§originator_uuid: Option<String>§specific_destination_uuids: Vec<String>§timestamp: String§priority: u16§precedence: u16Trait Implementations§
Source§impl Clone for WrapRequest
impl Clone for WrapRequest
Source§fn clone(&self) -> WrapRequest
fn clone(&self) -> WrapRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !Freeze for WrapRequest
impl RefUnwindSafe for WrapRequest
impl Send for WrapRequest
impl Sync for WrapRequest
impl Unpin for WrapRequest
impl UnwindSafe for WrapRequest
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