pub struct DaemonRequestFrame {
pub ops: String,
pub presentation: Option<String>,
pub presentation_per_op: Option<Vec<Option<String>>>,
pub namespace: String,
}Expand description
Request frame sent from a client to the daemon.
Fields§
§ops: String§presentation: Option<String>§presentation_per_op: Option<Vec<Option<String>>>§namespace: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for DaemonRequestFrame
impl<'de> Deserialize<'de> for DaemonRequestFrame
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 DaemonRequestFrame
impl RefUnwindSafe for DaemonRequestFrame
impl Send for DaemonRequestFrame
impl Sync for DaemonRequestFrame
impl Unpin for DaemonRequestFrame
impl UnsafeUnpin for DaemonRequestFrame
impl UnwindSafe for DaemonRequestFrame
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