#[non_exhaustive]pub struct PageSpan {
pub page_start: i32,
pub page_end: i32,
/* private fields */
}Available on crate features
conversational-search-service or search-service only.Expand description
Page span of the chunk.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.page_start: i32The start page of the chunk.
page_end: i32The end page of the chunk.
Implementations§
Trait Implementations§
impl StructuralPartialEq for PageSpan
Auto Trait Implementations§
impl Freeze for PageSpan
impl RefUnwindSafe for PageSpan
impl Send for PageSpan
impl Sync for PageSpan
impl Unpin for PageSpan
impl UnwindSafe for PageSpan
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