pub struct OperationReply {
pub id: Option<i64>,
pub success: bool,
pub results: Option<Value>,
pub error: Option<String>,
}Fields§
§id: Option<i64>§success: bool§results: Option<Value>§error: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for OperationReply
impl Clone for OperationReply
Source§fn clone(&self) -> OperationReply
fn clone(&self) -> OperationReply
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 OperationReply
impl Debug for OperationReply
Source§impl<'de> Deserialize<'de> for OperationReply
impl<'de> Deserialize<'de> for OperationReply
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
Auto Trait Implementations§
impl Freeze for OperationReply
impl RefUnwindSafe for OperationReply
impl Send for OperationReply
impl Sync for OperationReply
impl Unpin for OperationReply
impl UnwindSafe for OperationReply
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