pub struct DaemonResponseFrame {
pub ok: bool,
pub result: Option<String>,
pub error: Option<String>,
pub namespace_mismatch: bool,
}Expand description
Response frame sent from the daemon back to a client.
Fields§
§ok: bool§result: Option<String>§error: Option<String>§namespace_mismatch: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for DaemonResponseFrame
impl<'de> Deserialize<'de> for DaemonResponseFrame
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 DaemonResponseFrame
impl RefUnwindSafe for DaemonResponseFrame
impl Send for DaemonResponseFrame
impl Sync for DaemonResponseFrame
impl Unpin for DaemonResponseFrame
impl UnsafeUnpin for DaemonResponseFrame
impl UnwindSafe for DaemonResponseFrame
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