pub struct PdfFileLoader<'a, T> { /* private fields */ }pdf only.Expand description
PdfFileLoader is a utility for loading pdf files from the filesystem using glob patterns or directory paths. It provides methods to read file contents and handle errors gracefully.
§Errors
This module defines a custom error type PdfLoaderError which can represent various errors that might occur during file loading operations, such as any FileLoaderError alongside specific PDF-related errors.
§Example Usage
use rig_core::loaders::PdfFileLoader;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Create a FileLoader using a glob pattern
let loader = PdfFileLoader::with_glob("tests/data/*.pdf")?;
// Load pdf file contents by page, ignoring any errors
let contents: Vec<String> = loader
.load()
.ignore_errors()
.by_page()
.ignore_errors()
.into_iter()
.collect();
for content in contents {
println!("{}", content);
}
Ok(())
}PdfFileLoader uses strict typing between the iterator methods to ensure that transitions between different implementations of the loaders and it’s methods are handled properly by the compiler.
Implementations§
Source§impl<'a> PdfFileLoader<'a, Result<PathBuf, PdfLoaderError>>
impl<'a> PdfFileLoader<'a, Result<PathBuf, PdfLoaderError>>
Sourcepub fn load(self) -> PdfFileLoader<'a, Result<Document, PdfLoaderError>>
pub fn load(self) -> PdfFileLoader<'a, Result<Document, PdfLoaderError>>
Loads the contents of the pdfs within the iterator returned by PdfFileLoader::with_glob or PdfFileLoader::with_dir. Loaded PDF documents are raw PDF instances that can be further processed (by page, etc).
§Example
Load pdfs in directory “tests/data/*.pdf” and return the loaded documents
let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.load().into_iter();
for result in content {
match result {
Ok(doc) => println!("{:?}", doc),
Err(e) => eprintln!("Error reading pdf: {}", e),
}
}Sourcepub fn load_with_path(
self,
) -> PdfFileLoader<'a, Result<(PathBuf, Document), PdfLoaderError>>
pub fn load_with_path( self, ) -> PdfFileLoader<'a, Result<(PathBuf, Document), PdfLoaderError>>
Loads the contents of the pdfs within the iterator returned by PdfFileLoader::with_glob or PdfFileLoader::with_dir. Loaded PDF documents are raw PDF instances with their path that can be further processed.
§Example
Load pdfs in directory “tests/data/*.pdf” and return the loaded documents
let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.load_with_path().into_iter();
for result in content {
match result {
Ok((path, doc)) => println!("{:?} {:?}", path, doc),
Err(e) => eprintln!("Error reading pdf: {}", e),
}
}Source§impl<'a> PdfFileLoader<'a, Result<PathBuf, PdfLoaderError>>
impl<'a> PdfFileLoader<'a, Result<PathBuf, PdfLoaderError>>
Sourcepub fn read(self) -> PdfFileLoader<'a, Result<String, PdfLoaderError>>
pub fn read(self) -> PdfFileLoader<'a, Result<String, PdfLoaderError>>
Directly reads the contents of the pdfs within the iterator returned by PdfFileLoader::with_glob or PdfFileLoader::with_dir.
§Example
Read pdfs in directory “tests/data/*.pdf” and return the contents of the documents.
let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.read().into_iter();
for result in content {
match result {
Ok(content) => println!("{}", content),
Err(e) => eprintln!("Error reading pdf: {}", e),
}
}Sourcepub fn read_with_path(
self,
) -> PdfFileLoader<'a, Result<(PathBuf, String), PdfLoaderError>>
pub fn read_with_path( self, ) -> PdfFileLoader<'a, Result<(PathBuf, String), PdfLoaderError>>
Directly reads the contents of the pdfs within the iterator returned by PdfFileLoader::with_glob or PdfFileLoader::with_dir and returns the path along with the content.
§Example
Read pdfs in directory “tests/data/*.pdf” and return the content and paths of the documents.
let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.read_with_path().into_iter();
for result in content {
match result {
Ok((path, content)) => println!("{:?} {}", path, content),
Err(e) => eprintln!("Error reading pdf: {}", e),
}
}Source§impl<'a> PdfFileLoader<'a, Document>
impl<'a> PdfFileLoader<'a, Document>
Sourcepub fn by_page(self) -> PdfFileLoader<'a, Result<String, PdfLoaderError>>
pub fn by_page(self) -> PdfFileLoader<'a, Result<String, PdfLoaderError>>
Chunks the pages of a loaded document by page, flattened as a single vector.
§Example
Load pdfs in directory “tests/data/*.pdf” and chunk all document into it’s pages.
let content = PdfFileLoader::with_glob("tests/data/*.pdf")?
.load()
.ignore_errors()
.by_page()
.into_iter();
for result in content {
match result {
Ok(page) => println!("{}", page),
Err(e) => eprintln!("Error reading pdf: {}", e),
}
}Source§impl<'a> PdfFileLoader<'a, (PathBuf, Document)>
impl<'a> PdfFileLoader<'a, (PathBuf, Document)>
Sourcepub fn by_page(
self,
) -> PdfFileLoader<'a, (PathBuf, Vec<(usize, Result<String, PdfLoaderError>)>)>
pub fn by_page( self, ) -> PdfFileLoader<'a, (PathBuf, Vec<(usize, Result<String, PdfLoaderError>)>)>
Chunks the pages of a loaded document by page, processed as a vector of documents by path which each document container an inner vector of pages by page number.
§Example
Read pdfs in directory “tests/data/*.pdf” and chunk all documents by path by it’s pages.
let content = PdfFileLoader::with_glob("tests/data/*.pdf")?
.load_with_path()
.ignore_errors()
.by_page()
.into_iter();
for (path, pages) in content {
println!("{}", path.display());
for (pageno, result) in pages {
match result {
Ok(content) => println!("Page {}: {}", pageno, content),
Err(e) => eprintln!("Error reading page: {}", e),
}
}
}Source§impl<'a> PdfFileLoader<'a, (PathBuf, Vec<(usize, Result<String, PdfLoaderError>)>)>
impl<'a> PdfFileLoader<'a, (PathBuf, Vec<(usize, Result<String, PdfLoaderError>)>)>
Sourcepub fn ignore_errors(self) -> PdfFileLoader<'a, (PathBuf, Vec<(usize, String)>)>
pub fn ignore_errors(self) -> PdfFileLoader<'a, (PathBuf, Vec<(usize, String)>)>
Ignores errors in the iterator, returning only successful results. This can be used on any PdfFileLoader state of iterator whose items are results.
§Example
Read files in directory “tests/data/*.pdf” and ignore errors from unreadable files.
let content = PdfFileLoader::with_glob("tests/data/*.pdf")?
.load_with_path()
.ignore_errors()
.by_page()
.ignore_errors();
for (_path, pages) in content {
println!("{}", pages.len())
}Source§impl<'a, T> PdfFileLoader<'a, Result<T, PdfLoaderError>>where
T: 'a,
impl<'a, T> PdfFileLoader<'a, Result<T, PdfLoaderError>>where
T: 'a,
Sourcepub fn ignore_errors(self) -> PdfFileLoader<'a, T>
pub fn ignore_errors(self) -> PdfFileLoader<'a, T>
Ignores errors in the iterator, returning only successful results. This can be used on any PdfFileLoader state of iterator whose items are results.
§Example
Read files in directory “tests/data/*.pdf” and ignore errors from unreadable files.
let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.read().ignore_errors();
for content in content {
println!("{}", content)
}Source§impl PdfFileLoader<'_, Result<PathBuf, FileLoaderError>>
impl PdfFileLoader<'_, Result<PathBuf, FileLoaderError>>
Sourcepub fn with_glob(
pattern: &str,
) -> Result<PdfFileLoader<'_, Result<PathBuf, PdfLoaderError>>, PdfLoaderError>
pub fn with_glob( pattern: &str, ) -> Result<PdfFileLoader<'_, Result<PathBuf, PdfLoaderError>>, PdfLoaderError>
Creates a new PdfFileLoader using a glob pattern to match files.
§Example
Create a PdfFileLoader for all .pdf files that match the glob “tests/data/*.pdf”.
let loader = PdfFileLoader::with_glob("tests/data/*.pdf")?;Sourcepub fn with_dir(
directory: &str,
) -> Result<PdfFileLoader<'_, Result<PathBuf, PdfLoaderError>>, PdfLoaderError>
pub fn with_dir( directory: &str, ) -> Result<PdfFileLoader<'_, Result<PathBuf, PdfLoaderError>>, PdfLoaderError>
Creates a new PdfFileLoader on all files within a directory.
§Example
Create a PdfFileLoader for all files that are in the directory “files”.
let loader = PdfFileLoader::with_dir("files")?;Source§impl<'a> PdfFileLoader<'a, Vec<u8>>
impl<'a> PdfFileLoader<'a, Vec<u8>>
Sourcepub fn from_bytes(bytes: Vec<u8>) -> PdfFileLoader<'a, Vec<u8>>
pub fn from_bytes(bytes: Vec<u8>) -> PdfFileLoader<'a, Vec<u8>>
Ingest a PDF as a byte array.
Sourcepub fn from_bytes_multi(bytes_vec: Vec<Vec<u8>>) -> PdfFileLoader<'a, Vec<u8>>
pub fn from_bytes_multi(bytes_vec: Vec<Vec<u8>>) -> PdfFileLoader<'a, Vec<u8>>
Ingest multiple byte arrays.
Sourcepub fn load(self) -> PdfFileLoader<'a, Result<Document, PdfLoaderError>>
pub fn load(self) -> PdfFileLoader<'a, Result<Document, PdfLoaderError>>
Use this once you’ve created the loader to load the document in.
Sourcepub fn load_with_path(
self,
) -> PdfFileLoader<'a, Result<(PathBuf, Document), PdfLoaderError>>
pub fn load_with_path( self, ) -> PdfFileLoader<'a, Result<(PathBuf, Document), PdfLoaderError>>
Use this once you’ve created the loader to load the document in (and get the path).
Trait Implementations§
Source§impl<'a, T> IntoIterator for PdfFileLoader<'a, T>
impl<'a, T> IntoIterator for PdfFileLoader<'a, T>
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for PdfFileLoader<'a, T>
impl<'a, T> !Send for PdfFileLoader<'a, T>
impl<'a, T> !Sync for PdfFileLoader<'a, T>
impl<'a, T> !UnwindSafe for PdfFileLoader<'a, T>
impl<'a, T> Freeze for PdfFileLoader<'a, T>
impl<'a, T> Unpin for PdfFileLoader<'a, T>
impl<'a, T> UnsafeUnpin for PdfFileLoader<'a, T>
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<I, C> CompactStringExt for C
impl<I, C> CompactStringExt for C
Source§fn concat_compact(self) -> CompactString
fn concat_compact(self) -> CompactString
CompactString Read moreSource§fn join_compact<S>(self, separator: S) -> CompactString
fn join_compact<S>(self, separator: S) -> CompactString
CompactString Read moreimpl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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> 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> ⓘ
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> ⓘ
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>
T in a tonic::RequestSource§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>
T in a tonic::RequestSource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<'a, I> MultiOps<&'a RoaringBitmap> for Iwhere
I: IntoIterator<Item = &'a RoaringBitmap>,
impl<'a, I> MultiOps<&'a RoaringBitmap> for Iwhere
I: IntoIterator<Item = &'a RoaringBitmap>,
Source§type Output = RoaringBitmap
type Output = RoaringBitmap
Source§fn intersection(self) -> <I as MultiOps<&'a RoaringBitmap>>::Output
fn intersection(self) -> <I as MultiOps<&'a RoaringBitmap>>::Output
intersection between all elements.Source§fn difference(self) -> <I as MultiOps<&'a RoaringBitmap>>::Output
fn difference(self) -> <I as MultiOps<&'a RoaringBitmap>>::Output
difference between all elements.Source§fn symmetric_difference(self) -> <I as MultiOps<&'a RoaringBitmap>>::Output
fn symmetric_difference(self) -> <I as MultiOps<&'a RoaringBitmap>>::Output
symmetric difference between all elements.Source§impl<'a, I> MultiOps<&'a RoaringTreemap> for Iwhere
I: IntoIterator<Item = &'a RoaringTreemap>,
impl<'a, I> MultiOps<&'a RoaringTreemap> for Iwhere
I: IntoIterator<Item = &'a RoaringTreemap>,
Source§type Output = RoaringTreemap
type Output = RoaringTreemap
Source§fn intersection(self) -> <I as MultiOps<&'a RoaringTreemap>>::Output
fn intersection(self) -> <I as MultiOps<&'a RoaringTreemap>>::Output
intersection between all elements.Source§fn difference(self) -> <I as MultiOps<&'a RoaringTreemap>>::Output
fn difference(self) -> <I as MultiOps<&'a RoaringTreemap>>::Output
difference between all elements.Source§fn symmetric_difference(self) -> <I as MultiOps<&'a RoaringTreemap>>::Output
fn symmetric_difference(self) -> <I as MultiOps<&'a RoaringTreemap>>::Output
symmetric difference between all elements.Source§impl<'a, I, E> MultiOps<Result<&'a RoaringBitmap, E>> for I
impl<'a, I, E> MultiOps<Result<&'a RoaringBitmap, E>> for I
Source§type Output = Result<RoaringBitmap, E>
type Output = Result<RoaringBitmap, E>
Source§fn union(self) -> <I as MultiOps<Result<&'a RoaringBitmap, E>>>::Output
fn union(self) -> <I as MultiOps<Result<&'a RoaringBitmap, E>>>::Output
union between all elements.Source§fn intersection(self) -> <I as MultiOps<Result<&'a RoaringBitmap, E>>>::Output
fn intersection(self) -> <I as MultiOps<Result<&'a RoaringBitmap, E>>>::Output
intersection between all elements.Source§fn difference(self) -> <I as MultiOps<Result<&'a RoaringBitmap, E>>>::Output
fn difference(self) -> <I as MultiOps<Result<&'a RoaringBitmap, E>>>::Output
difference between all elements.Source§fn symmetric_difference(
self,
) -> <I as MultiOps<Result<&'a RoaringBitmap, E>>>::Output
fn symmetric_difference( self, ) -> <I as MultiOps<Result<&'a RoaringBitmap, E>>>::Output
symmetric difference between all elements.Source§impl<'a, I, E> MultiOps<Result<&'a RoaringTreemap, E>> for I
impl<'a, I, E> MultiOps<Result<&'a RoaringTreemap, E>> for I
Source§type Output = Result<RoaringTreemap, E>
type Output = Result<RoaringTreemap, E>
Source§fn union(self) -> <I as MultiOps<Result<&'a RoaringTreemap, E>>>::Output
fn union(self) -> <I as MultiOps<Result<&'a RoaringTreemap, E>>>::Output
union between all elements.Source§fn intersection(self) -> <I as MultiOps<Result<&'a RoaringTreemap, E>>>::Output
fn intersection(self) -> <I as MultiOps<Result<&'a RoaringTreemap, E>>>::Output
intersection between all elements.Source§fn difference(self) -> <I as MultiOps<Result<&'a RoaringTreemap, E>>>::Output
fn difference(self) -> <I as MultiOps<Result<&'a RoaringTreemap, E>>>::Output
difference between all elements.Source§fn symmetric_difference(
self,
) -> <I as MultiOps<Result<&'a RoaringTreemap, E>>>::Output
fn symmetric_difference( self, ) -> <I as MultiOps<Result<&'a RoaringTreemap, E>>>::Output
symmetric difference between all elements.Source§impl<I, E> MultiOps<Result<RoaringBitmap, E>> for I
impl<I, E> MultiOps<Result<RoaringBitmap, E>> for I
Source§type Output = Result<RoaringBitmap, E>
type Output = Result<RoaringBitmap, E>
Source§fn union(self) -> <I as MultiOps<Result<RoaringBitmap, E>>>::Output
fn union(self) -> <I as MultiOps<Result<RoaringBitmap, E>>>::Output
union between all elements.Source§fn intersection(self) -> <I as MultiOps<Result<RoaringBitmap, E>>>::Output
fn intersection(self) -> <I as MultiOps<Result<RoaringBitmap, E>>>::Output
intersection between all elements.Source§fn difference(self) -> <I as MultiOps<Result<RoaringBitmap, E>>>::Output
fn difference(self) -> <I as MultiOps<Result<RoaringBitmap, E>>>::Output
difference between all elements.Source§fn symmetric_difference(
self,
) -> <I as MultiOps<Result<RoaringBitmap, E>>>::Output
fn symmetric_difference( self, ) -> <I as MultiOps<Result<RoaringBitmap, E>>>::Output
symmetric difference between all elements.Source§impl<I, E> MultiOps<Result<RoaringTreemap, E>> for I
impl<I, E> MultiOps<Result<RoaringTreemap, E>> for I
Source§type Output = Result<RoaringTreemap, E>
type Output = Result<RoaringTreemap, E>
Source§fn union(self) -> <I as MultiOps<Result<RoaringTreemap, E>>>::Output
fn union(self) -> <I as MultiOps<Result<RoaringTreemap, E>>>::Output
union between all elements.Source§fn intersection(self) -> <I as MultiOps<Result<RoaringTreemap, E>>>::Output
fn intersection(self) -> <I as MultiOps<Result<RoaringTreemap, E>>>::Output
intersection between all elements.Source§fn difference(self) -> <I as MultiOps<Result<RoaringTreemap, E>>>::Output
fn difference(self) -> <I as MultiOps<Result<RoaringTreemap, E>>>::Output
difference between all elements.Source§fn symmetric_difference(
self,
) -> <I as MultiOps<Result<RoaringTreemap, E>>>::Output
fn symmetric_difference( self, ) -> <I as MultiOps<Result<RoaringTreemap, E>>>::Output
symmetric difference between all elements.Source§impl<I> MultiOps<RoaringBitmap> for Iwhere
I: IntoIterator<Item = RoaringBitmap>,
impl<I> MultiOps<RoaringBitmap> for Iwhere
I: IntoIterator<Item = RoaringBitmap>,
Source§type Output = RoaringBitmap
type Output = RoaringBitmap
Source§fn intersection(self) -> <I as MultiOps<RoaringBitmap>>::Output
fn intersection(self) -> <I as MultiOps<RoaringBitmap>>::Output
intersection between all elements.Source§fn difference(self) -> <I as MultiOps<RoaringBitmap>>::Output
fn difference(self) -> <I as MultiOps<RoaringBitmap>>::Output
difference between all elements.Source§fn symmetric_difference(self) -> <I as MultiOps<RoaringBitmap>>::Output
fn symmetric_difference(self) -> <I as MultiOps<RoaringBitmap>>::Output
symmetric difference between all elements.Source§impl<I> MultiOps<RoaringTreemap> for Iwhere
I: IntoIterator<Item = RoaringTreemap>,
impl<I> MultiOps<RoaringTreemap> for Iwhere
I: IntoIterator<Item = RoaringTreemap>,
Source§type Output = RoaringTreemap
type Output = RoaringTreemap
Source§fn intersection(self) -> <I as MultiOps<RoaringTreemap>>::Output
fn intersection(self) -> <I as MultiOps<RoaringTreemap>>::Output
intersection between all elements.Source§fn difference(self) -> <I as MultiOps<RoaringTreemap>>::Output
fn difference(self) -> <I as MultiOps<RoaringTreemap>>::Output
difference between all elements.Source§fn symmetric_difference(self) -> <I as MultiOps<RoaringTreemap>>::Output
fn symmetric_difference(self) -> <I as MultiOps<RoaringTreemap>>::Output
symmetric difference between all elements.Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out indicating that a T is niched.Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.