Struct rustic_core::IndexInfos
source · pub struct IndexInfos {
pub blobs: Vec<BlobInfo>,
pub blobs_delete: Vec<BlobInfo>,
pub packs: Vec<PackInfo>,
pub packs_delete: Vec<PackInfo>,
}
Expand description
Index information from repoinfo
Fields§
§blobs: Vec<BlobInfo>
Infos about blobs
blobs_delete: Vec<BlobInfo>
Infos about blobs in packs marked for deletion
packs: Vec<PackInfo>
Infos about packs
packs_delete: Vec<PackInfo>
Infos about packs marked for deletion
Trait Implementations§
source§impl Clone for IndexInfos
impl Clone for IndexInfos
source§fn clone(&self) -> IndexInfos
fn clone(&self) -> IndexInfos
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 IndexInfos
impl Debug for IndexInfos
source§impl Default for IndexInfos
impl Default for IndexInfos
source§fn default() -> IndexInfos
fn default() -> IndexInfos
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IndexInfos
impl<'de> Deserialize<'de> for IndexInfos
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 RefUnwindSafe for IndexInfos
impl Send for IndexInfos
impl Sync for IndexInfos
impl Unpin for IndexInfos
impl UnwindSafe for IndexInfos
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