pub struct Handle(/* private fields */);Expand description
A reference to a side-car artifact in the manifest directory.
Produced by Writer::finish after a side-car write completes and
inserted into a Record like any other value. Serializes as {"$handle": "<name>"}
on the wire; the load side rehydrates it through
crate::load::Object::read.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Handle
Available on crate feature serde only.
impl<'de> Deserialize<'de> for Handle
Available on crate feature
serde only.Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Handle
impl RefUnwindSafe for Handle
impl Send for Handle
impl Sync for Handle
impl Unpin for Handle
impl UnsafeUnpin for Handle
impl UnwindSafe for Handle
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