pub struct AqQueueDesc {
pub name: String,
pub kind: AqPayloadKind,
pub payload_toid: Vec<u8>,
}Expand description
Static description of an AQ queue, used by both enqueue and dequeue.
Fields§
§name: String§kind: AqPayloadKind§payload_toid: Vec<u8>TOID of the payload: 16-byte sentinel for RAW/JSON, the type OID for object queues.
Implementations§
Source§impl AqQueueDesc
impl AqQueueDesc
Trait Implementations§
Source§impl Clone for AqQueueDesc
impl Clone for AqQueueDesc
Source§fn clone(&self) -> AqQueueDesc
fn clone(&self) -> AqQueueDesc
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AqQueueDesc
impl RefUnwindSafe for AqQueueDesc
impl Send for AqQueueDesc
impl Sync for AqQueueDesc
impl Unpin for AqQueueDesc
impl UnsafeUnpin for AqQueueDesc
impl UnwindSafe for AqQueueDesc
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