pub struct ParcodeCollectionPromise<'a, T> { /* private fields */ }Expand description
A promise for a collection (Vector).
Supports partial loading and random access via .get(index).
Specialized lazy field for collections (Vec) allowing partial access.
Implementations§
Source§impl<'a, T: ParcodeItem + Send + Sync + 'a> ParcodeCollectionPromise<'a, T>
impl<'a, T: ParcodeItem + Send + Sync + 'a> ParcodeCollectionPromise<'a, T>
Source§impl<'a, T> ParcodeCollectionPromise<'a, T>
impl<'a, T> ParcodeCollectionPromise<'a, T>
Sourcepub fn get_lazy(&self, index: usize) -> Result<T::Lazy>
pub fn get_lazy(&self, index: usize) -> Result<T::Lazy>
Retrieves a Lazy Proxy for the item at index.
This allows accessing local fields of the item without triggering the loading of its heavy dependencies.
Sourcepub fn first(&self) -> Result<Option<T::Lazy>>
pub fn first(&self) -> Result<Option<T::Lazy>>
Returns the first item as a lazy mirror, or None if empty.
Trait Implementations§
Source§impl<'a, T: Clone> Clone for ParcodeCollectionPromise<'a, T>
impl<'a, T: Clone> Clone for ParcodeCollectionPromise<'a, T>
Source§fn clone(&self) -> ParcodeCollectionPromise<'a, T>
fn clone(&self) -> ParcodeCollectionPromise<'a, T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a, T> Freeze for ParcodeCollectionPromise<'a, T>
impl<'a, T> !RefUnwindSafe for ParcodeCollectionPromise<'a, T>
impl<'a, T> Send for ParcodeCollectionPromise<'a, T>where
T: Send,
impl<'a, T> Sync for ParcodeCollectionPromise<'a, T>where
T: Sync,
impl<'a, T> Unpin for ParcodeCollectionPromise<'a, T>where
T: Unpin,
impl<'a, T> !UnwindSafe for ParcodeCollectionPromise<'a, T>
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> 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