pub struct RequestInspect {
pub common: RequestCommon,
pub targets: Vec<String>,
}
Expand description
Represents an Inspect-request.
The Inspect-request can be used to get information about the reasoner state.
Fields§
§common: RequestCommon
The common schema of all requests
targets: Vec<String>
A list of targets that can be used to scope the inspect request.
Trait Implementations§
Source§impl Clone for RequestInspect
impl Clone for RequestInspect
Source§fn clone(&self) -> RequestInspect
fn clone(&self) -> RequestInspect
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 RequestInspect
impl Debug for RequestInspect
Source§impl<'de> Deserialize<'de> for RequestInspect
impl<'de> Deserialize<'de> for RequestInspect
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 RequestInspect
impl RefUnwindSafe for RequestInspect
impl Send for RequestInspect
impl Sync for RequestInspect
impl Unpin for RequestInspect
impl UnwindSafe for RequestInspect
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