pub struct Marshalled<T> { /* private fields */ }Implementations§
Source§impl<T: Traversible> Marshalled<T>
impl<T: Traversible> Marshalled<T>
Trait Implementations§
Source§impl<T> Deref for Marshalled<T>
impl<T> Deref for Marshalled<T>
Source§impl<T: Send + Sync + Clone + ToOutput> Fetch for Marshalled<T>
impl<T: Send + Sync + Clone + ToOutput> Fetch for Marshalled<T>
type T = T
fn fetch_full(&self) -> FailFuture<'_, Node<Self::T>>
fn fetch(&self) -> FailFuture<'_, Self::T>
fn try_fetch_local(&self) -> Result<Option<Node<Self::T>>>
fn fetch_local(&self) -> Option<Self::T>
fn try_unwrap(self: Arc<Self>) -> Option<Self::T>
fn get(&self) -> Option<&Self::T>
fn get_mut(&mut self) -> Option<&mut Self::T>
fn get_mut_finalize(&mut self)
fn into_dyn_fetch<'a>(self) -> Arc<dyn Fetch<T = Self::T> + 'a>where
Self: Sized + 'a,
Source§impl<T: ToOutput> FetchBytes for Marshalled<T>
impl<T: ToOutput> FetchBytes for Marshalled<T>
fn fetch_bytes(&self) -> FailFuture<'_, ByteNode>
fn fetch_data(&self) -> FailFuture<'_, Vec<u8>>
fn fetch_bytes_local(&self) -> Result<Option<ByteNode>>
fn fetch_data_local(&self) -> Option<Vec<u8>>
fn as_inner(&self) -> Option<&(dyn Any + 'static)>
fn as_resolve(&self) -> Option<&Arc<dyn Resolve>>
fn try_unwrap_resolve(self: Arc<Self>) -> Option<Arc<dyn Resolve>>
Source§impl<T> ListHashes for Marshalled<T>
impl<T> ListHashes for Marshalled<T>
fn list_hashes(&self, f: &mut impl FnMut(Hash))
fn topology_hash(&self) -> Hash
fn point_count(&self) -> usize
Source§impl<I: PointInput, T: Object<I::Extra>> Parse<I> for Marshalled<T>
impl<I: PointInput, T: Object<I::Extra>> Parse<I> for Marshalled<T>
Source§impl<T> Tagged for Marshalled<T>where
T: Tagged,
impl<T> Tagged for Marshalled<T>where
T: Tagged,
Source§impl<T: ToOutput> ToOutput for Marshalled<T>
impl<T: ToOutput> ToOutput for Marshalled<T>
Source§impl<T> Topological for Marshalled<T>
impl<T> Topological for Marshalled<T>
Auto Trait Implementations§
impl<T> Freeze for Marshalled<T>where
T: Freeze,
impl<T> RefUnwindSafe for Marshalled<T>where
T: RefUnwindSafe,
impl<T> Send for Marshalled<T>where
T: Send,
impl<T> Sync for Marshalled<T>where
T: Sync,
impl<T> Unpin for Marshalled<T>where
T: Unpin,
impl<T> UnsafeUnpin for Marshalled<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Marshalled<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> AsAny for T
impl<T> AsAny for T
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