pub struct WindowSummary {
pub label: String,
pub top_files: Vec<String>,
pub focus_areas: Vec<String>,
pub themes: Vec<String>,
pub resume_hint: String,
pub commit_refs: Vec<CommitSummary>,
pub change_summary: Vec<ChangeSummary>,
}Fields§
§label: String§top_files: Vec<String>§focus_areas: Vec<String>§themes: Vec<String>§resume_hint: String§commit_refs: Vec<CommitSummary>§change_summary: Vec<ChangeSummary>Trait Implementations§
Source§impl Clone for WindowSummary
impl Clone for WindowSummary
Source§fn clone(&self) -> WindowSummary
fn clone(&self) -> WindowSummary
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 WindowSummary
impl Debug for WindowSummary
Source§impl Serialize for WindowSummary
impl Serialize for WindowSummary
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for WindowSummary
impl RefUnwindSafe for WindowSummary
impl Send for WindowSummary
impl Sync for WindowSummary
impl Unpin for WindowSummary
impl UnsafeUnpin for WindowSummary
impl UnwindSafe for WindowSummary
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