pub struct JiraCommentsResponse {
pub comments: Vec<JiraComment>,
}Expand description
Response from GET /issue/{key}/comment.
Fields§
§comments: Vec<JiraComment>Trait Implementations§
Source§impl Clone for JiraCommentsResponse
impl Clone for JiraCommentsResponse
Source§fn clone(&self) -> JiraCommentsResponse
fn clone(&self) -> JiraCommentsResponse
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 moreSource§impl Debug for JiraCommentsResponse
impl Debug for JiraCommentsResponse
Source§impl<'de> Deserialize<'de> for JiraCommentsResponse
impl<'de> Deserialize<'de> for JiraCommentsResponse
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 JiraCommentsResponse
impl RefUnwindSafe for JiraCommentsResponse
impl Send for JiraCommentsResponse
impl Sync for JiraCommentsResponse
impl Unpin for JiraCommentsResponse
impl UnsafeUnpin for JiraCommentsResponse
impl UnwindSafe for JiraCommentsResponse
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