qdrant-edge 0.8.0

A lightweight, in-process vector search engine designed for embedded devices, autonomous systems, and mobile agents.
Documentation
use crate::shard::scroll::ScrollRequestInternal;

use crate::edge::requests::scroll::ScrollRequest;

impl From<ScrollRequest> for ScrollRequestInternal {
    fn from(request: ScrollRequest) -> Self {
        let ScrollRequest {
            offset,
            limit,
            filter,
            with_payload,
            with_vector,
            order_by,
        } = request;
        ScrollRequestInternal {
            offset,
            limit,
            filter,
            with_payload,
            with_vector,
            order_by,
        }
    }
}