pub struct DictionaryInfoResponse {
pub last_updated: Option<String>,
pub item_count: Option<i32>,
pub digest: Option<String>,
}Fields§
§last_updated: Option<String>Timestamp (UTC) when the dictionary was last updated or an item was added or removed.
item_count: Option<i32>The number of items currently in the dictionary.
digest: Option<String>A hash of all the dictionary content.
Implementations§
Source§impl DictionaryInfoResponse
impl DictionaryInfoResponse
pub fn new() -> DictionaryInfoResponse
Trait Implementations§
Source§impl Clone for DictionaryInfoResponse
impl Clone for DictionaryInfoResponse
Source§fn clone(&self) -> DictionaryInfoResponse
fn clone(&self) -> DictionaryInfoResponse
Returns a duplicate 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 moreSource§impl Debug for DictionaryInfoResponse
impl Debug for DictionaryInfoResponse
Source§impl Default for DictionaryInfoResponse
impl Default for DictionaryInfoResponse
Source§fn default() -> DictionaryInfoResponse
fn default() -> DictionaryInfoResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DictionaryInfoResponse
impl<'de> Deserialize<'de> for DictionaryInfoResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DictionaryInfoResponse
impl PartialEq for DictionaryInfoResponse
Source§impl Serialize for DictionaryInfoResponse
impl Serialize for DictionaryInfoResponse
impl StructuralPartialEq for DictionaryInfoResponse
Auto Trait Implementations§
impl Freeze for DictionaryInfoResponse
impl RefUnwindSafe for DictionaryInfoResponse
impl Send for DictionaryInfoResponse
impl Sync for DictionaryInfoResponse
impl Unpin for DictionaryInfoResponse
impl UnwindSafe for DictionaryInfoResponse
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