pub enum QueueClass {
Declare(DeclareMethod),
DeclareOk(DeclareOkMethod),
Bind(BindMethod),
BindOk,
Unbind(UnbindMethod),
UnbindOk,
Purge(PurgeMethod),
PurgeOk(PurgeOkMethod),
Delete(DeleteMethod),
DeleteOk(DeleteOkMethod),
}
Variants§
Declare(DeclareMethod)
DeclareOk(DeclareOkMethod)
Bind(BindMethod)
BindOk
Unbind(UnbindMethod)
UnbindOk
Purge(PurgeMethod)
PurgeOk(PurgeOkMethod)
Delete(DeleteMethod)
DeleteOk(DeleteOkMethod)
Implementations§
Source§impl QueueClass
impl QueueClass
pub fn declare(&self) -> Option<&DeclareMethod>
pub fn declare_ok(&self) -> Option<&DeclareOkMethod>
pub fn bind(&self) -> Option<&BindMethod>
pub fn bind_ok(&self) -> Option<()>
pub fn unbind(&self) -> Option<&UnbindMethod>
pub fn unbind_ok(&self) -> Option<()>
pub fn purge(&self) -> Option<&PurgeMethod>
pub fn purge_ok(&self) -> Option<&PurgeOkMethod>
pub fn delete(&self) -> Option<&DeleteMethod>
pub fn delete_ok(&self) -> Option<&DeleteOkMethod>
Trait Implementations§
Source§impl Clone for QueueClass
impl Clone for QueueClass
Source§fn clone(&self) -> QueueClass
fn clone(&self) -> QueueClass
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 QueueClass
impl Debug for QueueClass
Source§impl PartialEq for QueueClass
impl PartialEq for QueueClass
impl StructuralPartialEq for QueueClass
Auto Trait Implementations§
impl !Freeze for QueueClass
impl RefUnwindSafe for QueueClass
impl Send for QueueClass
impl Sync for QueueClass
impl Unpin for QueueClass
impl UnwindSafe for QueueClass
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