foxglove 0.20.0

Foxglove SDK
Documentation
/// An error encountered while parsing a message.
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum ParseError {
    /// Empty binary message.
    #[error("Empty binary message")]
    EmptyBinaryMessage,
    /// Unhandled message type.
    #[error("Unhandled message type")]
    UnhandledMessageType,
    /// Invalid opcode for a binary message.
    #[error("Unknown binary opcode {0}")]
    InvalidOpcode(u8),
    /// The buffer for a binary message was too short to decode.
    #[error("Buffer too short")]
    BufferTooShort,
    /// The fetch asset response contained an invalid status code.
    #[error("Invalid fetch asset status {0}")]
    InvalidFetchAssetStatus(u8),
    /// Invalid UTF-8.
    #[error(transparent)]
    Utf8(#[from] std::str::Utf8Error),
    /// Invalid JSON.
    #[error(transparent)]
    Json(#[from] serde_json::Error),
    /// Invalid playback state.
    #[doc(hidden)]
    #[error("Invalid playback command {0}")]
    InvalidPlaybackCommand(u8),
    /// Invalid playback status
    #[doc(hidden)]
    #[error("Invalid playback status {0}")]
    InvalidPlaybackStatus(u8),
}