pub struct ReviewDetail {
pub review_id: String,
pub title: Option<String>,
pub status: String,
pub change_id: Option<String>,
pub votes: Vec<ReviewVote>,
pub open_thread_count: usize,
}Fields§
§review_id: String§title: Option<String>§status: String§change_id: Option<String>§votes: Vec<ReviewVote>§open_thread_count: usizeTrait Implementations§
Source§impl Clone for ReviewDetail
impl Clone for ReviewDetail
Source§fn clone(&self) -> ReviewDetail
fn clone(&self) -> ReviewDetail
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 ReviewDetail
impl Debug for ReviewDetail
Source§impl<'de> Deserialize<'de> for ReviewDetail
impl<'de> Deserialize<'de> for ReviewDetail
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 ReviewDetail
impl RefUnwindSafe for ReviewDetail
impl Send for ReviewDetail
impl Sync for ReviewDetail
impl Unpin for ReviewDetail
impl UnsafeUnpin for ReviewDetail
impl UnwindSafe for ReviewDetail
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