pub struct SummaryFileSnapshot {
pub file_path: String,
pub requested_content_hash: Option<String>,
pub summaries: Vec<Summary>,
pub current: bool,
}Fields§
§file_path: String§requested_content_hash: Option<String>§summaries: Vec<Summary>§current: boolTrait Implementations§
Source§impl Clone for SummaryFileSnapshot
impl Clone for SummaryFileSnapshot
Source§fn clone(&self) -> SummaryFileSnapshot
fn clone(&self) -> SummaryFileSnapshot
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 moreAuto Trait Implementations§
impl Freeze for SummaryFileSnapshot
impl RefUnwindSafe for SummaryFileSnapshot
impl Send for SummaryFileSnapshot
impl Sync for SummaryFileSnapshot
impl Unpin for SummaryFileSnapshot
impl UnsafeUnpin for SummaryFileSnapshot
impl UnwindSafe for SummaryFileSnapshot
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