pub enum UnsupportedHost {
UndocumentedPlatform {
os: &'static str,
arch: &'static str,
},
UndocumentedPair {
os: Os,
arch: Arch,
},
}Expand description
A host that GitHub’s matrix does not document.
Variants§
UndocumentedPlatform
The build targets an operating system or architecture outside the matrix altogether.
Fields
UndocumentedPair
Both halves are documented, but not together: ARM32 is Linux-only.
Trait Implementations§
Source§impl Clone for UnsupportedHost
impl Clone for UnsupportedHost
Source§fn clone(&self) -> UnsupportedHost
fn clone(&self) -> UnsupportedHost
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 UnsupportedHost
Source§impl Debug for UnsupportedHost
impl Debug for UnsupportedHost
Source§impl Display for UnsupportedHost
impl Display for UnsupportedHost
impl Eq for UnsupportedHost
Source§impl Error for UnsupportedHost
impl Error for UnsupportedHost
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for UnsupportedHost
impl PartialEq for UnsupportedHost
impl StructuralPartialEq for UnsupportedHost
Auto Trait Implementations§
impl Freeze for UnsupportedHost
impl RefUnwindSafe for UnsupportedHost
impl Send for UnsupportedHost
impl Sync for UnsupportedHost
impl Unpin for UnsupportedHost
impl UnsafeUnpin for UnsupportedHost
impl UnwindSafe for UnsupportedHost
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