forked from Orchid/orchid
base and extension fully compiles, host in good shape
This commit is contained in:
@@ -1,13 +1,20 @@
|
||||
use std::num::NonZeroU64;
|
||||
|
||||
use orchid_api_derive::{Coding, Hierarchy};
|
||||
use orchid_api_derive::{Coding, Decode, Encode, Hierarchy};
|
||||
use orchid_api_traits::Request;
|
||||
|
||||
use crate::{Comment, HostExtReq, OrcResult, SysId, TokenTree};
|
||||
|
||||
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord, Coding)]
|
||||
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord, Encode, Decode)]
|
||||
pub struct ParsId(pub NonZeroU64);
|
||||
|
||||
// impl orchid_api_traits::Decode for ParsId {
|
||||
// async fn decode<R: async_std::io::Read + ?Sized>(mut read:
|
||||
// std::pin::Pin<&mut R>) -> Self {
|
||||
// Self(orchid_api_traits::Decode::decode(read.as_mut()).await)
|
||||
// }
|
||||
// }
|
||||
|
||||
#[derive(Clone, Debug, Coding, Hierarchy)]
|
||||
#[extends(HostExtReq)]
|
||||
pub struct ParseLine {
|
||||
|
||||
Reference in New Issue
Block a user