pub struct BlueprintSummary {
pub id: BlueprintId,
pub name: String,
pub domain: Domain,
pub status: BlueprintStatus,
pub entity_count: usize,
pub file_count: usize,
pub dependency_count: usize,
pub test_count: usize,
pub type_count: usize,
pub function_count: usize,
}Fields§
§id: BlueprintId§name: String§domain: Domain§status: BlueprintStatus§entity_count: usize§file_count: usize§dependency_count: usize§test_count: usize§type_count: usize§function_count: usizeTrait Implementations§
Source§impl Clone for BlueprintSummary
impl Clone for BlueprintSummary
Source§fn clone(&self) -> BlueprintSummary
fn clone(&self) -> BlueprintSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 BlueprintSummary
impl Debug for BlueprintSummary
Source§impl<'de> Deserialize<'de> for BlueprintSummary
impl<'de> Deserialize<'de> for BlueprintSummary
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 BlueprintSummary
impl RefUnwindSafe for BlueprintSummary
impl Send for BlueprintSummary
impl Sync for BlueprintSummary
impl Unpin for BlueprintSummary
impl UnsafeUnpin for BlueprintSummary
impl UnwindSafe for BlueprintSummary
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