pub struct ObjectManifest {
pub schema: u32,
pub file_context: ObjectFileContext,
pub reverse_image_search: Option<ReverseImageSearchCache>,
pub object_remotes: BTreeMap<String, ObjectRemote>,
}Expand description
Metadata stored beside one immutable CAS blob.
Fields§
§schema: u32§file_context: ObjectFileContext§reverse_image_search: Option<ReverseImageSearchCache>§object_remotes: BTreeMap<String, ObjectRemote>Implementations§
Trait Implementations§
Source§impl Clone for ObjectManifest
impl Clone for ObjectManifest
Source§fn clone(&self) -> ObjectManifest
fn clone(&self) -> ObjectManifest
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 ObjectManifest
impl Debug for ObjectManifest
Source§impl<'de> Deserialize<'de> for ObjectManifest
impl<'de> Deserialize<'de> for ObjectManifest
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
impl Eq for ObjectManifest
Source§impl PartialEq for ObjectManifest
impl PartialEq for ObjectManifest
Source§impl Serialize for ObjectManifest
impl Serialize for ObjectManifest
impl StructuralPartialEq for ObjectManifest
Auto Trait Implementations§
impl Freeze for ObjectManifest
impl RefUnwindSafe for ObjectManifest
impl Send for ObjectManifest
impl Sync for ObjectManifest
impl Unpin for ObjectManifest
impl UnsafeUnpin for ObjectManifest
impl UnwindSafe for ObjectManifest
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