pub enum Operations {
ItemGet(ItemGet),
ItemSet(ItemSet),
ItemList(ItemList),
TablePrepare(TablePrepare),
TableCommit(TableCommit),
TableDelete(TableDelete),
GossipSync(GossipSync),
GossipFind(GossipFind),
}
Expand description
All known RPCs.
Variants§
ItemGet(ItemGet)
ItemSet(ItemSet)
ItemList(ItemList)
TablePrepare(TablePrepare)
TableCommit(TableCommit)
TableDelete(TableDelete)
GossipSync(GossipSync)
GossipFind(GossipFind)
Implementations§
Source§impl Operations
impl Operations
Trait Implementations§
Source§impl Debug for Operations
impl Debug for Operations
Source§impl<'de> Deserialize<'de> for Operations
impl<'de> Deserialize<'de> for Operations
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<GossipFind> for Operations
impl From<GossipFind> for Operations
Source§fn from(value: GossipFind) -> Self
fn from(value: GossipFind) -> Self
Converts to this type from the input type.
Source§impl From<GossipSync> for Operations
impl From<GossipSync> for Operations
Source§fn from(value: GossipSync) -> Self
fn from(value: GossipSync) -> Self
Converts to this type from the input type.
Source§impl From<ItemGet> for Operations
impl From<ItemGet> for Operations
Source§impl From<ItemList> for Operations
impl From<ItemList> for Operations
Source§impl From<ItemSet> for Operations
impl From<ItemSet> for Operations
Source§impl From<TableCommit> for Operations
impl From<TableCommit> for Operations
Source§fn from(value: TableCommit) -> Self
fn from(value: TableCommit) -> Self
Converts to this type from the input type.
Source§impl From<TableDelete> for Operations
impl From<TableDelete> for Operations
Source§fn from(value: TableDelete) -> Self
fn from(value: TableDelete) -> Self
Converts to this type from the input type.
Source§impl From<TablePrepare> for Operations
impl From<TablePrepare> for Operations
Source§fn from(value: TablePrepare) -> Self
fn from(value: TablePrepare) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !Freeze for Operations
impl RefUnwindSafe for Operations
impl Send for Operations
impl Sync for Operations
impl Unpin for Operations
impl UnwindSafe for Operations
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