Skip to main content

PatchObjectStore

Trait PatchObjectStore 

Source
pub trait PatchObjectStore {
    // Required method
    fn fetch_patch_object(&self, object_id: ObjectId) -> Result<Vec<u8>>;
}
Expand description

Provider for ECS patch object payload bytes.

Required Methods§

Source

fn fetch_patch_object(&self, object_id: ObjectId) -> Result<Vec<u8>>

Fetch an ECS object payload by ObjectId.

§Errors

Returns an error when the object is missing/corrupt/unreadable.

Implementors§