pub struct ForumPostData {
pub user_id: String,
pub topic_id: String,
pub topic_name: String,
pub post_id: String,
}Fields§
§user_id: String§topic_id: String§topic_name: String§post_id: StringTrait Implementations§
Source§impl Clone for ForumPostData
impl Clone for ForumPostData
Source§fn clone(&self) -> ForumPostData
fn clone(&self) -> ForumPostData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ForumPostData
impl Debug for ForumPostData
Source§impl<'de> Deserialize<'de> for ForumPostData
impl<'de> Deserialize<'de> for ForumPostData
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
Auto Trait Implementations§
impl Freeze for ForumPostData
impl RefUnwindSafe for ForumPostData
impl Send for ForumPostData
impl Sync for ForumPostData
impl Unpin for ForumPostData
impl UnsafeUnpin for ForumPostData
impl UnwindSafe for ForumPostData
Blanket Implementations§
impl<B> BodyBounds for Bwhere
B: Serialize,
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