Spaces:
Build error
Build error
use super::StrictModeVerification; | |
use crate::operations::types::{PointRequestInternal, ScrollRequestInternal}; | |
impl StrictModeVerification for ScrollRequestInternal { | |
fn query_limit(&self) -> Option<usize> { | |
self.limit | |
} | |
fn indexed_filter_read(&self) -> Option<&segment::types::Filter> { | |
self.filter.as_ref() | |
} | |
fn indexed_filter_write(&self) -> Option<&segment::types::Filter> { | |
None | |
} | |
fn request_exact(&self) -> Option<bool> { | |
None | |
} | |
fn request_search_params(&self) -> Option<&segment::types::SearchParams> { | |
None | |
} | |
} | |
impl StrictModeVerification for PointRequestInternal { | |
fn query_limit(&self) -> Option<usize> { | |
None | |
} | |
fn indexed_filter_read(&self) -> Option<&segment::types::Filter> { | |
None | |
} | |
fn indexed_filter_write(&self) -> Option<&segment::types::Filter> { | |
None | |
} | |
fn request_exact(&self) -> Option<bool> { | |
None | |
} | |
fn request_search_params(&self) -> Option<&segment::types::SearchParams> { | |
None | |
} | |
} | |