pub struct BugDiff {
pub description: Option<String>,
pub duplicate_of_link: Option<Url>,
pub name: Option<String>,
pub private: Option<bool>,
pub security_related: Option<bool>,
pub tags: Option<String>,
pub title: Option<String>,
}Expand description
Representation of the bug-diff resource
Fields§
§description: Option<String>Description
A detailed description of the problem, including the steps required to reproduce it.
duplicate_of_link: Option<Url>Duplicate Of
name: Option<String>Nickname
A short and unique name. Add one only if you often need to retype the URL but have trouble remembering the bug number.
private: Option<bool>This bug report should be private
Private bug reports are visible only to their subscribers.
This bug is a security vulnerability.
Tags
Space-separated keywords for classifying this bug report.
title: Option<String>Summary
A one-line summary of the problem.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BugDiff
impl<'de> Deserialize<'de> for BugDiff
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
impl StructuralPartialEq for BugDiff
Auto Trait Implementations§
impl Freeze for BugDiff
impl RefUnwindSafe for BugDiff
impl Send for BugDiff
impl Sync for BugDiff
impl Unpin for BugDiff
impl UnsafeUnpin for BugDiff
impl UnwindSafe for BugDiff
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