pub struct QuestionReply {
pub id: String,
pub question_id: String,
pub author_type: String,
pub author_id: String,
pub body: String,
pub is_resolution: bool,
pub created_at: String,
}Fields§
§id: String§question_id: String§body: String§is_resolution: bool§created_at: StringTrait Implementations§
Source§impl Clone for QuestionReply
impl Clone for QuestionReply
Source§fn clone(&self) -> QuestionReply
fn clone(&self) -> QuestionReply
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 Debug for QuestionReply
impl Debug for QuestionReply
Source§impl<'de> Deserialize<'de> for QuestionReply
impl<'de> Deserialize<'de> for QuestionReply
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 QuestionReply
impl RefUnwindSafe for QuestionReply
impl Send for QuestionReply
impl Sync for QuestionReply
impl Unpin for QuestionReply
impl UnsafeUnpin for QuestionReply
impl UnwindSafe for QuestionReply
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