Enum nix_compat::nix_daemon::worker_protocol::Operation

source ·
#[repr(u64)]
pub enum Operation {
Show 44 variants IsValidPath = 1, HasSubstitutes = 3, QueryPathHash = 4, QueryReferences = 5, QueryReferrers = 6, AddToStore = 7, AddTextToStore = 8, BuildPaths = 9, EnsurePath = 10, AddTempRoot = 11, AddIndirectRoot = 12, SyncWithGC = 13, FindRoots = 14, ExportPath = 16, QueryDeriver = 18, SetOptions = 19, CollectGarbage = 20, QuerySubstitutablePathInfo = 21, QueryDerivationOutputs = 22, QueryAllValidPaths = 23, QueryFailedPaths = 24, ClearFailedPaths = 25, QueryPathInfo = 26, ImportPaths = 27, QueryDerivationOutputNames = 28, QueryPathFromHashPart = 29, QuerySubstitutablePathInfos = 30, QueryValidPaths = 31, QuerySubstitutablePaths = 32, QueryValidDerivers = 33, OptimiseStore = 34, VerifyStore = 35, BuildDerivation = 36, AddSignatures = 37, NarFromPath = 38, AddToStoreNar = 39, QueryMissing = 40, QueryDerivationOutputMap = 41, RegisterDrvOutput = 42, QueryRealisation = 43, AddMultipleToStore = 44, AddBuildLog = 45, BuildPathsWithResults = 46, AddPermRoot = 47,
}
Expand description

Worker Operation

These operations are encoded as unsigned 64 bits before being sent to the wire. See the read_op and write_op operations to serialize/deserialize the operation on the wire.

Note: for now, we’re using the Nix 2.20 operation description. The operations marked as obsolete are obsolete for Nix 2.20, not necessarily for Nix 2.3. We’ll revisit this later on.

Variants§

§

IsValidPath = 1

§

HasSubstitutes = 3

§

QueryPathHash = 4

§

QueryReferences = 5

§

QueryReferrers = 6

§

AddToStore = 7

§

AddTextToStore = 8

§

BuildPaths = 9

§

EnsurePath = 10

§

AddTempRoot = 11

§

AddIndirectRoot = 12

§

SyncWithGC = 13

§

FindRoots = 14

§

ExportPath = 16

§

QueryDeriver = 18

§

SetOptions = 19

§

CollectGarbage = 20

§

QuerySubstitutablePathInfo = 21

§

QueryDerivationOutputs = 22

§

QueryAllValidPaths = 23

§

QueryFailedPaths = 24

§

ClearFailedPaths = 25

§

QueryPathInfo = 26

§

ImportPaths = 27

§

QueryDerivationOutputNames = 28

§

QueryPathFromHashPart = 29

§

QuerySubstitutablePathInfos = 30

§

QueryValidPaths = 31

§

QuerySubstitutablePaths = 32

§

QueryValidDerivers = 33

§

OptimiseStore = 34

§

VerifyStore = 35

§

BuildDerivation = 36

§

AddSignatures = 37

§

NarFromPath = 38

§

AddToStoreNar = 39

§

QueryMissing = 40

§

QueryDerivationOutputMap = 41

§

RegisterDrvOutput = 42

§

QueryRealisation = 43

§

AddMultipleToStore = 44

§

AddBuildLog = 45

§

BuildPathsWithResults = 46

§

AddPermRoot = 47

Trait Implementations§

source§

impl Clone for Operation

source§

fn clone(&self) -> Operation

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Operation

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Operation> for u64

source§

fn from(enum_value: Operation) -> Self

Converts to this type from the input type.
source§

impl NixDeserialize for Operation

source§

fn try_deserialize<R>( reader: &mut R, ) -> impl Future<Output = Result<Option<Self>, R::Error>> + Send + '_
where R: ?Sized + NixRead + Send,

Read a value from the reader. This returns an Option to support gracefull shutdown.
source§

fn deserialize<R>( reader: &mut R, ) -> impl Future<Output = Result<Self, R::Error>> + Send + '_
where R: ?Sized + NixRead + Send,

source§

impl NixSerialize for Operation

source§

async fn serialize<W>(&self, writer: &mut W) -> Result<(), W::Error>
where W: NixWrite,

Write a value to the writer.
source§

impl PartialEq for Operation

source§

fn eq(&self, other: &Operation) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<u64> for Operation

§

type Error = TryFromPrimitiveError<Operation>

The type returned in the event of a conversion error.
source§

fn try_from(number: u64) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
source§

impl TryFromPrimitive for Operation

§

type Primitive = u64

§

type Error = TryFromPrimitiveError<Operation>

source§

const NAME: &'static str = "Operation"

source§

fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>

source§

impl StructuralPartialEq for Operation

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more