pub enum StateReadRequestType {
All(SlotsRequest),
Slots(SlotsRequest),
Reads,
}
Expand description
The type of results for this request.
Variants§
All(SlotsRequest)
Request the keys and values that are read with the state slots.
Slots(SlotsRequest)
Request only the slots that are read into.
Reads
Request only the keys and values that are read.
Trait Implementations§
Source§impl Clone for StateReadRequestType
impl Clone for StateReadRequestType
Source§fn clone(&self) -> StateReadRequestType
fn clone(&self) -> StateReadRequestType
Returns a copy 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 StateReadRequestType
impl Debug for StateReadRequestType
Source§impl Default for StateReadRequestType
impl Default for StateReadRequestType
Source§impl<'de> Deserialize<'de> for StateReadRequestType
impl<'de> Deserialize<'de> for StateReadRequestType
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 PartialEq for StateReadRequestType
impl PartialEq for StateReadRequestType
Source§impl Serialize for StateReadRequestType
impl Serialize for StateReadRequestType
impl StructuralPartialEq for StateReadRequestType
Auto Trait Implementations§
impl Freeze for StateReadRequestType
impl RefUnwindSafe for StateReadRequestType
impl Send for StateReadRequestType
impl Sync for StateReadRequestType
impl Unpin for StateReadRequestType
impl UnwindSafe for StateReadRequestType
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