pub struct VaultBuilder<'a> { /* private fields */ }Expand description
Builder for Vault
Implementations§
Source§impl<'a> VaultBuilder<'a>
impl<'a> VaultBuilder<'a>
Sourcepub const fn new(options: &'a VaultOptions) -> Self
pub const fn new(options: &'a VaultOptions) -> Self
Create default VaultBuilder
pub const fn follow_links(self, follow_links: bool) -> Self
pub const fn follow_root_links(self, follow_root_links: bool) -> Self
Sourcepub fn filter_entry<F>(self, f: F) -> Self
pub fn filter_entry<F>(self, f: F) -> Self
Set custom filter entry
Sourcepub fn into_iter<F>(self) -> impl Iterator<Item = Result<F, F::Error>>
Available on non-target_family=wasm only.
pub fn into_iter<F>(self) -> impl Iterator<Item = Result<F, F::Error>>
target_family=wasm only.Into VaultBuilder to iterator
Sourcepub fn into_par_iter<F>(
self,
) -> impl ParallelIterator<Item = Result<F, F::Error>>
Available on crate feature rayon only.
pub fn into_par_iter<F>( self, ) -> impl ParallelIterator<Item = Result<F, F::Error>>
rayon only.Into VaultBuilder to parallel iterator
Trait Implementations§
Source§impl Debug for VaultBuilder<'_>
impl Debug for VaultBuilder<'_>
Source§impl PartialEq for VaultBuilder<'_>
impl PartialEq for VaultBuilder<'_>
impl Eq for VaultBuilder<'_>
Auto Trait Implementations§
impl<'a> Freeze for VaultBuilder<'a>
impl<'a> !RefUnwindSafe for VaultBuilder<'a>
impl<'a> !Send for VaultBuilder<'a>
impl<'a> !Sync for VaultBuilder<'a>
impl<'a> Unpin for VaultBuilder<'a>
impl<'a> !UnwindSafe for VaultBuilder<'a>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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 more