** (Advanced)** Flags set in a [Reply Response]`OpReplyResponse` from MongoDB.** ** @see `https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-reply`constclass OpReplyFlags : Flag {** No flags are set. Business as usual.staticconst OpReplyFlags none := OpReplyFlags(0, "None")** Set when the cursor id is not valid at the server. staticconst OpReplyFlags cursorNotFound := OpReplyFlags(1.shiftl(0), "CursorNotFound")** Set when when query failed. Results consist of one document containing an '$err' field describing the failure.staticconst OpReplyFlags queryFailure := OpReplyFlags(1.shiftl(1), "QueryFailure")** Set when the server supports the 'AwaitData' Query option.staticconst OpReplyFlags awaitCapable := OpReplyFlags(1.shiftl(3), "AwaitCapable") @NoDocnew make(Int flag, Str? name := null) : super(flag, name){}}