pub struct ReviewThread {
pub id: i64,
pub author: String,
pub body: String,
pub path: Option<String>,
pub line: Option<u32>,
pub state: String,
}Fields§
§id: i64§body: String§path: Option<String>§line: Option<u32>§state: StringTrait 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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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