pub struct Entry<'a, T: Archiveable> {
pub request_params: T::RequestParams,
pub exchange: Exchange<'a, T>,
}Fields§
§request_params: T::RequestParams§exchange: Exchange<'a, T>Trait Implementations§
Source§impl<'a, 'de: 'a, T: Archiveable + 'a> Deserialize<'de> for Entry<'a, T>
impl<'a, 'de: 'a, T: Archiveable + 'a> Deserialize<'de> for Entry<'a, T>
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T: Archiveable + IntoBoundedStatic> IntoBoundedStatic for Entry<'_, T>
impl<T: Archiveable + IntoBoundedStatic> IntoBoundedStatic for Entry<'_, T>
Source§type Static = Entry<'static, <T as IntoBoundedStatic>::Static>
type Static = Entry<'static, <T as IntoBoundedStatic>::Static>
The target type is bounded by the
'static lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T into an owned T such that T: 'static.Auto Trait Implementations§
impl<'a, T> Freeze for Entry<'a, T>
impl<'a, T> RefUnwindSafe for Entry<'a, T>
impl<'a, T> Send for Entry<'a, T>
impl<'a, T> Sync for Entry<'a, T>
impl<'a, T> Unpin for Entry<'a, T>
impl<'a, T> UnsafeUnpin for Entry<'a, T>
impl<'a, T> UnwindSafe for Entry<'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