pub enum SupportStatus {
GenerallyAvailable,
PublicPreview,
}Expand description
How firmly GitHub supports a documented pair.
Variants§
GenerallyAvailable
Documented without qualification.
PublicPreview
Documented as public preview. Accepted, with a warning.
Implementations§
Source§impl SupportStatus
impl SupportStatus
Sourcepub const fn of(arch: Arch) -> Self
pub const fn of(arch: Arch) -> Self
Derived from Arch::is_public_preview rather than decided again here,
so f2 cannot get one answer from the domain and another from this
module.
Trait Implementations§
Source§impl Clone for SupportStatus
impl Clone for SupportStatus
Source§fn clone(&self) -> SupportStatus
fn clone(&self) -> SupportStatus
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 moreimpl Copy for SupportStatus
Source§impl Debug for SupportStatus
impl Debug for SupportStatus
Source§impl<'de> Deserialize<'de> for SupportStatus
impl<'de> Deserialize<'de> for SupportStatus
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 Eq for SupportStatus
Source§impl PartialEq for SupportStatus
impl PartialEq for SupportStatus
Source§impl Serialize for SupportStatus
impl Serialize for SupportStatus
impl StructuralPartialEq for SupportStatus
Auto Trait Implementations§
impl Freeze for SupportStatus
impl RefUnwindSafe for SupportStatus
impl Send for SupportStatus
impl Sync for SupportStatus
impl Unpin for SupportStatus
impl UnsafeUnpin for SupportStatus
impl UnwindSafe for SupportStatus
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