pub struct UseTheoryResults {
pub task: String,
pub ok: bool,
pub errors: Vec<Message>,
pub nodes: Vec<NodeResults>,
}
Expand description
Results for use_theories
command
Fields§
§task: String
§ok: bool
§errors: Vec<Message>
§nodes: Vec<NodeResults>
Trait Implementations§
Source§impl Debug for UseTheoryResults
impl Debug for UseTheoryResults
Source§impl<'de> Deserialize<'de> for UseTheoryResults
impl<'de> Deserialize<'de> for UseTheoryResults
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 UseTheoryResults
impl RefUnwindSafe for UseTheoryResults
impl Send for UseTheoryResults
impl Sync for UseTheoryResults
impl Unpin for UseTheoryResults
impl UnwindSafe for UseTheoryResults
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