pub struct MetadataItems {
pub download_url: Option<String>,
pub encrypted_key: Option<String>,
pub language: Option<String>,
pub size: Option<i64>,
pub version: Option<i64>,
}Expand description
A list of offline dictionary metadata.
This type is not used in any activity, and only used as part of another schema.
Fields§
§download_url: Option<String>no description provided
encrypted_key: Option<String>no description provided
language: Option<String>no description provided
size: Option<i64>no description provided
version: Option<i64>no description provided
Trait Implementations§
Source§impl Clone for MetadataItems
impl Clone for MetadataItems
Source§fn clone(&self) -> MetadataItems
fn clone(&self) -> MetadataItems
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 MetadataItems
impl Debug for MetadataItems
Source§impl Default for MetadataItems
impl Default for MetadataItems
Source§fn default() -> MetadataItems
fn default() -> MetadataItems
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataItems
impl<'de> Deserialize<'de> for MetadataItems
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 Serialize for MetadataItems
impl Serialize for MetadataItems
impl NestedType for MetadataItems
impl Part for MetadataItems
Auto Trait Implementations§
impl Freeze for MetadataItems
impl RefUnwindSafe for MetadataItems
impl Send for MetadataItems
impl Sync for MetadataItems
impl Unpin for MetadataItems
impl UnwindSafe for MetadataItems
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