pub struct OwnedData<D> { /* private fields */ }
Expand description
An owned data structure, that wraps generic data.
This structure is used to send owned data to the Send server.
This owned data is authenticated using an owner_token
,
which this structure manages.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<D> Freeze for OwnedData<D>where
D: Freeze,
impl<D> RefUnwindSafe for OwnedData<D>where
D: RefUnwindSafe,
impl<D> Send for OwnedData<D>where
D: Send,
impl<D> Sync for OwnedData<D>where
D: Sync,
impl<D> Unpin for OwnedData<D>where
D: Unpin,
impl<D> UnwindSafe for OwnedData<D>where
D: UnwindSafe,
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