#[repr(u8)]pub enum ResultType {
FileLinked = 100,
BuildLogLine = 101,
UntrustedPath = 102,
CorruptedPath = 103,
SetPhase = 104,
Progress = 105,
SetExpected = 106,
PostBuildLogLine = 107,
FetchStatus = 108,
}
Variants§
FileLinked = 100
BuildLogLine = 101
UntrustedPath = 102
CorruptedPath = 103
SetPhase = 104
Progress = 105
SetExpected = 106
PostBuildLogLine = 107
FetchStatus = 108
Trait Implementations§
Source§impl Clone for ResultType
impl Clone for ResultType
Source§fn clone(&self) -> ResultType
fn clone(&self) -> ResultType
Returns a copy 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 ResultType
impl Debug for ResultType
Source§impl<'de> Deserialize<'de> for ResultType
impl<'de> Deserialize<'de> for ResultType
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<ResultType> for u8
impl From<ResultType> for u8
Source§fn from(enum_value: ResultType) -> Self
fn from(enum_value: ResultType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResultType
impl PartialEq for ResultType
Source§impl Serialize for ResultType
impl Serialize for ResultType
Source§impl TryFrom<u8> for ResultType
impl TryFrom<u8> for ResultType
Source§type Error = TryFromPrimitiveError<ResultType>
type Error = TryFromPrimitiveError<ResultType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for ResultType
impl TryFromPrimitive for ResultType
const NAME: &'static str = "ResultType"
type Primitive = u8
type Error = TryFromPrimitiveError<ResultType>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Eq for ResultType
impl StructuralPartialEq for ResultType
Auto Trait Implementations§
impl Freeze for ResultType
impl RefUnwindSafe for ResultType
impl Send for ResultType
impl Sync for ResultType
impl Unpin for ResultType
impl UnwindSafe for ResultType
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