pub struct StoreSetReply {
pub error: Option<String>,
}Expand description
Response to StoreSetRequest.
Fields§
§error: Option<String>Set when the mutation failed.
Trait Implementations§
Source§impl Clone for StoreSetReply
impl Clone for StoreSetReply
Source§fn clone(&self) -> StoreSetReply
fn clone(&self) -> StoreSetReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StoreSetReply
impl Debug for StoreSetReply
Source§impl<'de> Deserialize<'de> for StoreSetReply
impl<'de> Deserialize<'de> for StoreSetReply
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
impl Eq for StoreSetReply
Source§impl PartialEq for StoreSetReply
impl PartialEq for StoreSetReply
Source§impl Serialize for StoreSetReply
impl Serialize for StoreSetReply
impl StructuralPartialEq for StoreSetReply
Auto Trait Implementations§
impl Freeze for StoreSetReply
impl RefUnwindSafe for StoreSetReply
impl Send for StoreSetReply
impl Sync for StoreSetReply
impl Unpin for StoreSetReply
impl UnsafeUnpin for StoreSetReply
impl UnwindSafe for StoreSetReply
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