seaplane 0.8.0

The Seaplane Rust SDK
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error as ThisError;

#[allow(missing_copy_implementations)]
#[derive(ThisError, Debug, Clone, PartialEq, Eq)]
pub enum MetadataError {
    #[error("request did not include the required key")]
    MissingMetadataKey,
    #[error("request must target either key or range")]
    IncorrectMetadataRequestTarget,
}