module System.Nix.Store.Remote.Types.NoReply
  ( NoReply(..)
  ) where

-- | Reply type for the case where the server does not reply
data NoReply = NoReply
  deriving (Int -> NoReply -> ShowS
[NoReply] -> ShowS
NoReply -> String
(Int -> NoReply -> ShowS)
-> (NoReply -> String) -> ([NoReply] -> ShowS) -> Show NoReply
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> NoReply -> ShowS
showsPrec :: Int -> NoReply -> ShowS
$cshow :: NoReply -> String
show :: NoReply -> String
$cshowList :: [NoReply] -> ShowS
showList :: [NoReply] -> ShowS
Show)