pub struct Segment {
pub id: SegmentUuid,
pub type: SegmentType,
pub scope: SegmentScope,
pub collection: CollectionUuid,
pub metadata: Option<Metadata>,
pub file_path: HashMap<String, Vec<String>>,
}Fields§
§id: SegmentUuid§type: SegmentType§scope: SegmentScope§collection: CollectionUuid§metadata: Option<Metadata>§file_path: HashMap<String, Vec<String>>Implementations§
Source§impl Segment
impl Segment
pub fn get_shards(&self) -> Result<Vec<SegmentShard>, SegmentShardError>
pub fn prefetch_supported(&self) -> bool
Sourcepub fn filepaths_to_prefetch(&self, shard_index: Option<u32>) -> Vec<String>
pub fn filepaths_to_prefetch(&self, shard_index: Option<u32>) -> Vec<String>
Returns the file paths that should be prefetched for this segment. If shard_index is None, returns the active shard’s file paths. If shard_index is Some, returns only the file paths for that shard.
Sourcepub fn num_shards(&self) -> Result<usize, SegmentShardError>
pub fn num_shards(&self) -> Result<usize, SegmentShardError>
Returns the number of shards for this segment. Derives from the length of file_path Vecs (all must be equal per the shard count invariant). Returns 1 if no file paths are present.
pub fn extract_prefix_and_id(path: &str) -> Result<(&str, Uuid), Error>
pub fn construct_prefix_path( &self, tenant: &str, database_id: &DatabaseUuid, ) -> String
Trait Implementations§
impl StructuralPartialEq for Segment
Auto Trait Implementations§
impl Freeze for Segment
impl RefUnwindSafe for Segment
impl Send for Segment
impl Sync for Segment
impl Unpin for Segment
impl UnsafeUnpin for Segment
impl UnwindSafe for Segment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.