pub struct ProjectIssueCreateMetadata {
pub expand: Option<String>,
pub param_self: Option<String>,
pub id: Option<String>,
pub key: Option<String>,
pub name: Option<String>,
pub avatar_urls: Option<Box<AvatarUrlsBean>>,
pub issuetypes: Option<Vec<IssueTypeIssueCreateMetadata>>,
}
Expand description
ProjectIssueCreateMetadata : Details of the issue creation metadata for a project.
Fields§
§expand: Option<String>
Expand options that include additional project issue create metadata details in the response.
param_self: Option<String>
The URL of the project.
id: Option<String>
The ID of the project.
key: Option<String>
The key of the project.
name: Option<String>
The name of the project.
avatar_urls: Option<Box<AvatarUrlsBean>>
List of the project’s avatars, returning the avatar size and associated URL.
issuetypes: Option<Vec<IssueTypeIssueCreateMetadata>>
List of the issue types supported by the project.
Implementations§
Source§impl ProjectIssueCreateMetadata
impl ProjectIssueCreateMetadata
Sourcepub fn new() -> ProjectIssueCreateMetadata
pub fn new() -> ProjectIssueCreateMetadata
Details of the issue creation metadata for a project.
Trait Implementations§
Source§impl Clone for ProjectIssueCreateMetadata
impl Clone for ProjectIssueCreateMetadata
Source§fn clone(&self) -> ProjectIssueCreateMetadata
fn clone(&self) -> ProjectIssueCreateMetadata
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 ProjectIssueCreateMetadata
impl Debug for ProjectIssueCreateMetadata
Source§impl Default for ProjectIssueCreateMetadata
impl Default for ProjectIssueCreateMetadata
Source§fn default() -> ProjectIssueCreateMetadata
fn default() -> ProjectIssueCreateMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectIssueCreateMetadata
impl<'de> Deserialize<'de> for ProjectIssueCreateMetadata
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 ProjectIssueCreateMetadata
Auto Trait Implementations§
impl Freeze for ProjectIssueCreateMetadata
impl RefUnwindSafe for ProjectIssueCreateMetadata
impl Send for ProjectIssueCreateMetadata
impl Sync for ProjectIssueCreateMetadata
impl Unpin for ProjectIssueCreateMetadata
impl UnwindSafe for ProjectIssueCreateMetadata
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