pub struct ReviewThread {
pub thread_id: String,
pub file: Option<String>,
pub line: Option<u32>,
pub resolved: bool,
pub comments: Vec<ReviewComment>,
}Fields§
§thread_id: String§file: Option<String>§line: Option<u32>§resolved: bool§comments: Vec<ReviewComment>Trait Implementations§
Source§impl Clone for ReviewThread
impl Clone for ReviewThread
Source§fn clone(&self) -> ReviewThread
fn clone(&self) -> ReviewThread
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 ReviewThread
impl Debug for ReviewThread
Source§impl<'de> Deserialize<'de> for ReviewThread
impl<'de> Deserialize<'de> for ReviewThread
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 ReviewThread
impl RefUnwindSafe for ReviewThread
impl Send for ReviewThread
impl Sync for ReviewThread
impl Unpin for ReviewThread
impl UnsafeUnpin for ReviewThread
impl UnwindSafe for ReviewThread
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