pub struct RawThread {
pub id: String,
pub is_resolved: bool,
pub is_outdated: bool,
pub viewer_can_resolve: bool,
pub path: Option<String>,
pub line: Option<i64>,
pub comments: ThreadComments,
}Fields§
§id: String§is_resolved: bool§is_outdated: bool§viewer_can_resolve: bool§path: Option<String>§line: Option<i64>§comments: ThreadCommentsTrait Implementations§
Source§impl<'de> Deserialize<'de> for RawThread
impl<'de> Deserialize<'de> for RawThread
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 RawThread
impl RefUnwindSafe for RawThread
impl Send for RawThread
impl Sync for RawThread
impl Unpin for RawThread
impl UnsafeUnpin for RawThread
impl UnwindSafe for RawThread
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