pub struct PluginOutput {
pub diagnostics: Vec<PluginDiagnosticWire>,
pub output_paths: Vec<String>,
pub logs: Option<String>,
pub exit_message: Option<String>,
}Expand description
JSON wire format returned by subprocess plugins on stdout.
Fields§
§diagnostics: Vec<PluginDiagnosticWire>§output_paths: Vec<String>§logs: Option<String>§exit_message: Option<String>Trait Implementations§
Source§impl Clone for PluginOutput
impl Clone for PluginOutput
Source§fn clone(&self) -> PluginOutput
fn clone(&self) -> PluginOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PluginOutput
impl Debug for PluginOutput
Source§impl Default for PluginOutput
impl Default for PluginOutput
Source§fn default() -> PluginOutput
fn default() -> PluginOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PluginOutput
impl<'de> Deserialize<'de> for PluginOutput
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 PluginOutput
impl RefUnwindSafe for PluginOutput
impl Send for PluginOutput
impl Sync for PluginOutput
impl Unpin for PluginOutput
impl UnsafeUnpin for PluginOutput
impl UnwindSafe for PluginOutput
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