pub struct ShellComponentBuildResult {
pub config_path: String,
pub output_path: String,
pub written: bool,
pub total_components: usize,
pub included_components: usize,
pub skipped_components: usize,
pub included_names: Vec<String>,
pub content: String,
}Expand description
Shell 组件构建结果。
Fields§
§config_path: String§output_path: String§written: bool§total_components: usize§included_components: usize§skipped_components: usize§included_names: Vec<String>§content: StringTrait Implementations§
Source§impl Clone for ShellComponentBuildResult
impl Clone for ShellComponentBuildResult
Source§fn clone(&self) -> ShellComponentBuildResult
fn clone(&self) -> ShellComponentBuildResult
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 ShellComponentBuildResult
impl Debug for ShellComponentBuildResult
Source§impl Default for ShellComponentBuildResult
impl Default for ShellComponentBuildResult
Source§fn default() -> ShellComponentBuildResult
fn default() -> ShellComponentBuildResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShellComponentBuildResult
impl<'de> Deserialize<'de> for ShellComponentBuildResult
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
impl Eq for ShellComponentBuildResult
Source§impl PartialEq for ShellComponentBuildResult
impl PartialEq for ShellComponentBuildResult
Source§fn eq(&self, other: &ShellComponentBuildResult) -> bool
fn eq(&self, other: &ShellComponentBuildResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ShellComponentBuildResult
Auto Trait Implementations§
impl Freeze for ShellComponentBuildResult
impl RefUnwindSafe for ShellComponentBuildResult
impl Send for ShellComponentBuildResult
impl Sync for ShellComponentBuildResult
impl Unpin for ShellComponentBuildResult
impl UnsafeUnpin for ShellComponentBuildResult
impl UnwindSafe for ShellComponentBuildResult
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