pub struct FullPaste<M, U> {
pub paste: Paste<M>,
pub user: Option<FullUser<U>>,
}
Fields§
§paste: Paste<M>
§user: Option<FullUser<U>>
Trait Implementations§
source§impl<'de, M, U> Deserialize<'de> for FullPaste<M, U>where
M: Deserialize<'de>,
U: Deserialize<'de>,
impl<'de, M, U> Deserialize<'de> for FullPaste<M, U>where M: Deserialize<'de>, U: 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<M: PartialEq, U: PartialEq> PartialEq for FullPaste<M, U>
impl<M: PartialEq, U: PartialEq> PartialEq for FullPaste<M, U>
impl<M, U> StructuralPartialEq for FullPaste<M, U>
Auto Trait Implementations§
impl<M, U> RefUnwindSafe for FullPaste<M, U>where M: RefUnwindSafe, U: RefUnwindSafe,
impl<M, U> Send for FullPaste<M, U>where M: Send, U: Send,
impl<M, U> Sync for FullPaste<M, U>where M: Sync, U: Sync,
impl<M, U> Unpin for FullPaste<M, U>where M: Unpin, U: Unpin,
impl<M, U> UnwindSafe for FullPaste<M, U>where M: UnwindSafe, U: 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