Struct DataResponseMetadata
#[non_exhaustive]pub struct DataResponseMetadata {
pub locale: Option<DataLocale>,
pub buffer_format: Option<BufferFormat>,
pub checksum: Option<u64>,
}
Expand description
A response object containing metadata about the returned data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.locale: Option<DataLocale>
The resolved locale of the returned data, if locale fallbacking was performed.
buffer_format: Option<BufferFormat>
The format of the buffer for buffer-backed data, if known (for example, JSON).
checksum: Option<u64>
An optional checksum. This can be used to ensure consistency across different markers.
Implementations§
§impl DataResponseMetadata
impl DataResponseMetadata
pub fn with_checksum(self, checksum: u64) -> DataResponseMetadata
pub fn with_checksum(self, checksum: u64) -> DataResponseMetadata
Sets the checksum.
Trait Implementations§
§impl Clone for DataResponseMetadata
impl Clone for DataResponseMetadata
§fn clone(&self) -> DataResponseMetadata
fn clone(&self) -> DataResponseMetadata
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for DataResponseMetadata
impl Debug for DataResponseMetadata
§impl Default for DataResponseMetadata
impl Default for DataResponseMetadata
§fn default() -> DataResponseMetadata
fn default() -> DataResponseMetadata
Returns the “default value” for a type. Read more
§impl PartialEq for DataResponseMetadata
impl PartialEq for DataResponseMetadata
impl StructuralPartialEq for DataResponseMetadata
Auto Trait Implementations§
impl Freeze for DataResponseMetadata
impl RefUnwindSafe for DataResponseMetadata
impl Send for DataResponseMetadata
impl Sync for DataResponseMetadata
impl Unpin for DataResponseMetadata
impl UnwindSafe for DataResponseMetadata
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more