pub struct BasicGetOptions {
pub ticket: u16,
pub no_ack: bool,
}Fields§
§ticket: u16§no_ack: boolIf this field is set the server does not expect acknowledgements for messages. That is, when a message is delivered to the client the server assumes the delivery will succeed and immediately dequeues it.
Trait Implementations§
Source§impl Clone for BasicGetOptions
impl Clone for BasicGetOptions
Source§fn clone(&self) -> BasicGetOptions
fn clone(&self) -> BasicGetOptions
Returns a duplicate 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 moreSource§impl Debug for BasicGetOptions
impl Debug for BasicGetOptions
Source§impl Default for BasicGetOptions
impl Default for BasicGetOptions
Source§fn default() -> BasicGetOptions
fn default() -> BasicGetOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for BasicGetOptions
impl PartialEq for BasicGetOptions
impl StructuralPartialEq for BasicGetOptions
Auto Trait Implementations§
impl Freeze for BasicGetOptions
impl RefUnwindSafe for BasicGetOptions
impl Send for BasicGetOptions
impl Sync for BasicGetOptions
impl Unpin for BasicGetOptions
impl UnwindSafe for BasicGetOptions
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