We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This definition:
pub struct Message { pub offset: u64, pub state: MessageState, pub timestamp: u64, pub id: u128, pub checksum: u32, pub headers: Option<HashMap<HeaderKey, HeaderValue>>, pub length: u32, pub payload: Bytes, }
references a MessageState enum that is not defined. From the Rust source code it should be defined as:
MessageState
public enum MessageState { Available, // Value = 1 Unavailable, // Value = 10 Poisoned, // Value = 20 MarkedForDeletion // Value = 30 }
The text was updated successfully, but these errors were encountered:
You're correct, will update :)
Sorry, something went wrong.
spetz
No branches or pull requests
This definition:
references a
MessageState
enum that is not defined. From the Rust source code it should be defined as:The text was updated successfully, but these errors were encountered: