pub struct RunPluginResult {
pub diagnostics: Vec<Diagnostic>,
pub output_paths: Vec<String>,
pub logs: Option<String>,
pub success: bool,
}Fields§
§diagnostics: Vec<Diagnostic>§output_paths: Vec<String>§logs: Option<String>§success: boolTrait Implementations§
Source§impl Clone for RunPluginResult
impl Clone for RunPluginResult
Source§fn clone(&self) -> RunPluginResult
fn clone(&self) -> RunPluginResult
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 RunPluginResult
impl Debug for RunPluginResult
Auto Trait Implementations§
impl Freeze for RunPluginResult
impl RefUnwindSafe for RunPluginResult
impl Send for RunPluginResult
impl Sync for RunPluginResult
impl Unpin for RunPluginResult
impl UnsafeUnpin for RunPluginResult
impl UnwindSafe for RunPluginResult
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