pub struct RepositoryWrite<'a> {
pub path: Cow<'a, str>,
pub bytes_written: u64,
}Fields§
§path: Cow<'a, str>The path that was written.
bytes_written: u64The number of bytes written.
Trait Implementations§
Source§impl<'a> Clone for RepositoryWrite<'a>
impl<'a> Clone for RepositoryWrite<'a>
Source§fn clone(&self) -> RepositoryWrite<'a>
fn clone(&self) -> RepositoryWrite<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for RepositoryWrite<'a>
impl<'a> RefUnwindSafe for RepositoryWrite<'a>
impl<'a> Send for RepositoryWrite<'a>
impl<'a> Sync for RepositoryWrite<'a>
impl<'a> Unpin for RepositoryWrite<'a>
impl<'a> UnwindSafe for RepositoryWrite<'a>
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