pub struct DictionaryItemResponse {
pub item_key: Option<String>,
pub item_value: Option<String>,
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub dictionary_id: Option<Box<String>>,
pub service_id: Option<Box<String>>,
}Fields§
§item_key: Option<String>Item key, maximum 256 characters.
item_value: Option<String>Item value, maximum 8000 characters.
created_at: Option<String>Date and time in ISO 8601 format.
deleted_at: Option<String>Date and time in ISO 8601 format.
updated_at: Option<String>Date and time in ISO 8601 format.
dictionary_id: Option<Box<String>>§service_id: Option<Box<String>>Implementations§
Source§impl DictionaryItemResponse
impl DictionaryItemResponse
pub fn new() -> DictionaryItemResponse
Trait Implementations§
Source§impl Clone for DictionaryItemResponse
impl Clone for DictionaryItemResponse
Source§fn clone(&self) -> DictionaryItemResponse
fn clone(&self) -> DictionaryItemResponse
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 DictionaryItemResponse
impl Debug for DictionaryItemResponse
Source§impl Default for DictionaryItemResponse
impl Default for DictionaryItemResponse
Source§fn default() -> DictionaryItemResponse
fn default() -> DictionaryItemResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DictionaryItemResponse
impl<'de> Deserialize<'de> for DictionaryItemResponse
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 DictionaryItemResponse
impl PartialEq for DictionaryItemResponse
Source§impl Serialize for DictionaryItemResponse
impl Serialize for DictionaryItemResponse
impl StructuralPartialEq for DictionaryItemResponse
Auto Trait Implementations§
impl Freeze for DictionaryItemResponse
impl RefUnwindSafe for DictionaryItemResponse
impl Send for DictionaryItemResponse
impl Sync for DictionaryItemResponse
impl Unpin for DictionaryItemResponse
impl UnsafeUnpin for DictionaryItemResponse
impl UnwindSafe for DictionaryItemResponse
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