#[repr(u8)]pub enum ActivityType {
Show 14 variants
Unknown = 0,
CopyPath = 100,
FileTransfer = 101,
Realise = 102,
CopyPaths = 103,
Builds = 104,
Build = 105,
OptimiseStore = 106,
VerifyPaths = 107,
Substitute = 108,
QueryPathInfo = 109,
PostBuildHook = 110,
BuildWaiting = 111,
FetchTree = 112,
}
Variants§
Unknown = 0
CopyPath = 100
FileTransfer = 101
Realise = 102
CopyPaths = 103
Builds = 104
Build = 105
OptimiseStore = 106
VerifyPaths = 107
Substitute = 108
QueryPathInfo = 109
PostBuildHook = 110
BuildWaiting = 111
FetchTree = 112
Trait Implementations§
Source§impl Clone for ActivityType
impl Clone for ActivityType
Source§fn clone(&self) -> ActivityType
fn clone(&self) -> ActivityType
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 ActivityType
impl Debug for ActivityType
Source§impl<'de> Deserialize<'de> for ActivityType
impl<'de> Deserialize<'de> for ActivityType
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 Display for ActivityType
impl Display for ActivityType
Source§impl From<ActivityType> for u8
impl From<ActivityType> for u8
Source§fn from(enum_value: ActivityType) -> Self
fn from(enum_value: ActivityType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ActivityType
impl PartialEq for ActivityType
Source§impl Serialize for ActivityType
impl Serialize for ActivityType
Source§impl TryFrom<u8> for ActivityType
impl TryFrom<u8> for ActivityType
Source§type Error = TryFromPrimitiveError<ActivityType>
type Error = TryFromPrimitiveError<ActivityType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for ActivityType
impl TryFromPrimitive for ActivityType
const NAME: &'static str = "ActivityType"
type Primitive = u8
type Error = TryFromPrimitiveError<ActivityType>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Eq for ActivityType
impl StructuralPartialEq for ActivityType
Auto Trait Implementations§
impl Freeze for ActivityType
impl RefUnwindSafe for ActivityType
impl Send for ActivityType
impl Sync for ActivityType
impl Unpin for ActivityType
impl UnwindSafe for ActivityType
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