Struct rustic_core::RepoFileInfo
source · pub struct RepoFileInfo {
pub tpe: FileType,
pub count: u64,
pub size: u64,
}
Expand description
Information about a repository files of a given FileType
Fields§
§tpe: FileType
The type of the files
count: u64
The total # of files
size: u64
The total size of all files
Trait Implementations§
source§impl Clone for RepoFileInfo
impl Clone for RepoFileInfo
source§fn clone(&self) -> RepoFileInfo
fn clone(&self) -> RepoFileInfo
Returns a copy 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 RepoFileInfo
impl Debug for RepoFileInfo
source§impl<'de> Deserialize<'de> for RepoFileInfo
impl<'de> Deserialize<'de> for RepoFileInfo
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
source§impl Serialize for RepoFileInfo
impl Serialize for RepoFileInfo
impl Copy for RepoFileInfo
Auto Trait Implementations§
impl RefUnwindSafe for RepoFileInfo
impl Send for RepoFileInfo
impl Sync for RepoFileInfo
impl Unpin for RepoFileInfo
impl UnwindSafe for RepoFileInfo
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