pub struct JoinPayload<J>(pub J);Tuple Fields§
§0: JImplementations§
Trait Implementations§
Source§impl<J: Clone> Clone for JoinPayload<J>
impl<J: Clone> Clone for JoinPayload<J>
Source§fn clone(&self) -> JoinPayload<J>
fn clone(&self) -> JoinPayload<J>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<J> ComposeSchema for JoinPayload<J>where
J: ToSchema,
impl<J> ComposeSchema for JoinPayload<J>where
J: ToSchema,
Source§impl<J: Debug> Debug for JoinPayload<J>
impl<J: Debug> Debug for JoinPayload<J>
Source§impl<'de, J> Deserialize<'de> for JoinPayload<J>where
J: Deserialize<'de>,
impl<'de, J> Deserialize<'de> for JoinPayload<J>where
J: Deserialize<'de>,
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
Source§impl<J> Serialize for JoinPayload<J>where
J: Serialize,
impl<J> Serialize for JoinPayload<J>where
J: Serialize,
Auto Trait Implementations§
impl<J> Freeze for JoinPayload<J>where
J: Freeze,
impl<J> RefUnwindSafe for JoinPayload<J>where
J: RefUnwindSafe,
impl<J> Send for JoinPayload<J>where
J: Send,
impl<J> Sync for JoinPayload<J>where
J: Sync,
impl<J> Unpin for JoinPayload<J>where
J: Unpin,
impl<J> UnsafeUnpin for JoinPayload<J>where
J: UnsafeUnpin,
impl<J> UnwindSafe for JoinPayload<J>where
J: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> GetDeleteMarker for T
impl<T> GetDeleteMarker for T
default fn delete_marker_field() -> Option<&'static str>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more