pub struct InspectContent {
pub status: Status,
pub found: bool,
pub data: HashMap<String, Value>,
pub metadata: HashMap<String, Value>,
}
Expand description
Response from inspecting code
Fields§
§status: Status
Status of the request.
found: bool
Whether the object was found or not.
data: HashMap<String, Value>
Empty if nothing is found.
metadata: HashMap<String, Value>
Metadata.
Trait Implementations§
Source§impl Debug for InspectContent
impl Debug for InspectContent
Source§impl<'de> Deserialize<'de> for InspectContent
impl<'de> Deserialize<'de> for InspectContent
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 InspectContent
impl RefUnwindSafe for InspectContent
impl Send for InspectContent
impl Sync for InspectContent
impl Unpin for InspectContent
impl UnwindSafe for InspectContent
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