Types.Qidtype flag = | Directoryfile is a directory
*)| AppendOnlywrites always hit the end of the file
*)| Exclusivefile is opened for exclusive use
*)| Mountfile is a mountpoint
*)| Authfile is an authentication file
*)| Temporaryfile is temporary and won't be backed up
*)| Symlink9P2000.u: file is a symlink
*)| Link9P2000.u: file is a hard-link
*)val sexp_of_flag : flag -> Sexplib0.Sexp.tval flag_of_sexp : Sexplib0.Sexp.t -> flagThe server's unique id for the file. Two files are the same if and only if the Qids are the same.
val any : tval is_any : t -> boolval file :
?id:int64 ->
?version:int32 ->
?append_only:bool ->
?exclusive:bool ->
?mount:bool ->
?auth:bool ->
?temporary:bool ->
?link:bool ->
unit ->
tConstruct a t representing a file
val dir : ?id:int64 -> ?version:int32 -> unit -> tConstruct a t representing a directory
val sizeof : t -> intThe size of a buffer needed to hold t
val read : Cstruct.t -> (t * Cstruct.t, [ `Msg of string ]) Stdlib.resultRead a t from the given buffer and return it, along with the unused remainder of the buffer. If the buffer cannot be parsed then return an error.
val write : t -> Cstruct.t -> (Cstruct.t, [ `Msg of string ]) Stdlib.resultWrite a t into the given buffer. If the buffer is too small, then return an error. Return the unused remainder of the buffer.