pub enum RawCommand {
Ping,
Disconnect,
Get(Cow<'static, str>),
Put(Cow<'static, str>, RawCommandArgument),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RawCommand
impl Clone for RawCommand
Source§fn clone(&self) -> RawCommand
fn clone(&self) -> RawCommand
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 RawCommand
impl Debug for RawCommand
Source§impl Display for RawCommand
impl Display for RawCommand
Source§impl<RES: DeserializeOwned> From<Command<RES>> for RawCommand
impl<RES: DeserializeOwned> From<Command<RES>> for RawCommand
Source§impl PartialEq for RawCommand
impl PartialEq for RawCommand
Source§impl PartialOrd for RawCommand
impl PartialOrd for RawCommand
impl StructuralPartialEq for RawCommand
Auto Trait Implementations§
impl Freeze for RawCommand
impl RefUnwindSafe for RawCommand
impl Send for RawCommand
impl Sync for RawCommand
impl Unpin for RawCommand
impl UnwindSafe for RawCommand
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