pub enum ProjectsV2ItemContentType {
DraftIssue,
Issue,
PullRequest,
}
Expand description
ProjectsV2ItemContentType
JSON schema
{
"type": "string",
"enum": [
"DraftIssue",
"Issue",
"PullRequest"
]
}
Variants§
Trait Implementations§
Source§impl Clone for ProjectsV2ItemContentType
impl Clone for ProjectsV2ItemContentType
Source§fn clone(&self) -> ProjectsV2ItemContentType
fn clone(&self) -> ProjectsV2ItemContentType
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 ProjectsV2ItemContentType
impl Debug for ProjectsV2ItemContentType
Source§impl<'de> Deserialize<'de> for ProjectsV2ItemContentType
impl<'de> Deserialize<'de> for ProjectsV2ItemContentType
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
Source§impl From<&ProjectsV2ItemContentType> for ProjectsV2ItemContentType
impl From<&ProjectsV2ItemContentType> for ProjectsV2ItemContentType
Source§fn from(value: &ProjectsV2ItemContentType) -> Self
fn from(value: &ProjectsV2ItemContentType) -> Self
Converts to this type from the input type.
Source§impl FromStr for ProjectsV2ItemContentType
impl FromStr for ProjectsV2ItemContentType
Source§impl Hash for ProjectsV2ItemContentType
impl Hash for ProjectsV2ItemContentType
Source§impl Ord for ProjectsV2ItemContentType
impl Ord for ProjectsV2ItemContentType
Source§fn cmp(&self, other: &ProjectsV2ItemContentType) -> Ordering
fn cmp(&self, other: &ProjectsV2ItemContentType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for ProjectsV2ItemContentType
impl PartialOrd for ProjectsV2ItemContentType
Source§impl ToString for ProjectsV2ItemContentType
impl ToString for ProjectsV2ItemContentType
Source§impl TryFrom<&String> for ProjectsV2ItemContentType
impl TryFrom<&String> for ProjectsV2ItemContentType
Source§impl TryFrom<&str> for ProjectsV2ItemContentType
impl TryFrom<&str> for ProjectsV2ItemContentType
Source§impl TryFrom<String> for ProjectsV2ItemContentType
impl TryFrom<String> for ProjectsV2ItemContentType
impl Copy for ProjectsV2ItemContentType
impl Eq for ProjectsV2ItemContentType
impl StructuralPartialEq for ProjectsV2ItemContentType
Auto Trait Implementations§
impl Freeze for ProjectsV2ItemContentType
impl RefUnwindSafe for ProjectsV2ItemContentType
impl Send for ProjectsV2ItemContentType
impl Sync for ProjectsV2ItemContentType
impl Unpin for ProjectsV2ItemContentType
impl UnwindSafe for ProjectsV2ItemContentType
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