pub struct Target {
pub store: Arc<dyn ObjectStore>,
pub root: NodeRef,
pub partition: PartitionId,
}Expand description
A store to run one case against.
Fields§
§store: Arc<dyn ObjectStore>The store the view is served over.
root: NodeRefA reference to the partition root.
partition: PartitionIdThe partition the store serves.
Auto Trait Implementations§
impl !RefUnwindSafe for Target
impl !UnwindSafe for Target
impl Freeze for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnsafeUnpin for Target
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