pub enum ReleaseAssetState {
Uploaded,
}
Expand description
State of the release asset.
JSON schema
{
"description": "State of the release asset.",
"type": "string",
"enum": [
"uploaded"
]
}
Variants§
Uploaded
Trait Implementations§
Source§impl Clone for ReleaseAssetState
impl Clone for ReleaseAssetState
Source§fn clone(&self) -> ReleaseAssetState
fn clone(&self) -> ReleaseAssetState
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 ReleaseAssetState
impl Debug for ReleaseAssetState
Source§impl<'de> Deserialize<'de> for ReleaseAssetState
impl<'de> Deserialize<'de> for ReleaseAssetState
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<&ReleaseAssetState> for ReleaseAssetState
impl From<&ReleaseAssetState> for ReleaseAssetState
Source§fn from(value: &ReleaseAssetState) -> Self
fn from(value: &ReleaseAssetState) -> Self
Converts to this type from the input type.
Source§impl FromStr for ReleaseAssetState
impl FromStr for ReleaseAssetState
Source§impl Hash for ReleaseAssetState
impl Hash for ReleaseAssetState
Source§impl Ord for ReleaseAssetState
impl Ord for ReleaseAssetState
Source§fn cmp(&self, other: &ReleaseAssetState) -> Ordering
fn cmp(&self, other: &ReleaseAssetState) -> 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 PartialEq for ReleaseAssetState
impl PartialEq for ReleaseAssetState
Source§impl PartialOrd for ReleaseAssetState
impl PartialOrd for ReleaseAssetState
Source§impl Serialize for ReleaseAssetState
impl Serialize for ReleaseAssetState
Source§impl ToString for ReleaseAssetState
impl ToString for ReleaseAssetState
Source§impl TryFrom<&String> for ReleaseAssetState
impl TryFrom<&String> for ReleaseAssetState
Source§impl TryFrom<&str> for ReleaseAssetState
impl TryFrom<&str> for ReleaseAssetState
Source§impl TryFrom<String> for ReleaseAssetState
impl TryFrom<String> for ReleaseAssetState
impl Copy for ReleaseAssetState
impl Eq for ReleaseAssetState
impl StructuralPartialEq for ReleaseAssetState
Auto Trait Implementations§
impl Freeze for ReleaseAssetState
impl RefUnwindSafe for ReleaseAssetState
impl Send for ReleaseAssetState
impl Sync for ReleaseAssetState
impl Unpin for ReleaseAssetState
impl UnwindSafe for ReleaseAssetState
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