Struct nix_compat::nix_daemon::types::QueryValidPaths
source · pub struct QueryValidPaths {
pub paths: Vec<StorePath<String>>,
pub substitute: bool,
}
Expand description
Request tupe for super::worker_protocol::Operation::QueryValidPaths
Fields§
§paths: Vec<StorePath<String>>
§substitute: bool
Trait Implementations§
source§impl NixDeserialize for QueryValidPaths
impl NixDeserialize for QueryValidPaths
source§fn try_deserialize<R>(
reader: &mut R,
) -> impl Future<Output = Result<Option<Self>, R::Error>> + Send + '_
fn try_deserialize<R>( reader: &mut R, ) -> impl Future<Output = Result<Option<Self>, R::Error>> + Send + '_
Read a value from the reader.
This returns an Option to support gracefull shutdown.
fn deserialize<R>( reader: &mut R, ) -> impl Future<Output = Result<Self, R::Error>> + Send + '_
Auto Trait Implementations§
impl Freeze for QueryValidPaths
impl RefUnwindSafe for QueryValidPaths
impl Send for QueryValidPaths
impl Sync for QueryValidPaths
impl Unpin for QueryValidPaths
impl UnwindSafe for QueryValidPaths
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