Enum rmp_serde::decode::Reference [−][src]
Expand description
Unification of both borrowed and non-borrowed reference types.
Variants
Borrowed(&'b T)
The reference is pointed at data that was borrowed.
Copied(&'c T)
The reference is pointed at data that was copied.
Trait Implementations
Auto Trait Implementations
impl<'b, 'c, T: ?Sized> RefUnwindSafe for Reference<'b, 'c, T> where
T: RefUnwindSafe,
impl<'b, 'c, T: ?Sized> UnwindSafe for Reference<'b, 'c, T> where
T: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more