pub struct VocabularyFilterInfo {
pub language_code: Option<String>,
pub last_modified_time: Option<f64>,
pub vocabulary_filter_name: Option<String>,
}Expand description
Provides information about a vocabulary filter.
Fields§
§language_code: Option<String>The language code of the words in the vocabulary filter.
last_modified_time: Option<f64>The date and time that the vocabulary was last updated.
vocabulary_filter_name: Option<String>The name of the vocabulary filter. The name must be unique in the account that holds the filter.
Trait Implementations§
Source§impl Clone for VocabularyFilterInfo
impl Clone for VocabularyFilterInfo
Source§fn clone(&self) -> VocabularyFilterInfo
fn clone(&self) -> VocabularyFilterInfo
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 VocabularyFilterInfo
impl Debug for VocabularyFilterInfo
Source§impl Default for VocabularyFilterInfo
impl Default for VocabularyFilterInfo
Source§fn default() -> VocabularyFilterInfo
fn default() -> VocabularyFilterInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VocabularyFilterInfo
impl<'de> Deserialize<'de> for VocabularyFilterInfo
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 VocabularyFilterInfo
impl PartialEq for VocabularyFilterInfo
impl StructuralPartialEq for VocabularyFilterInfo
Auto Trait Implementations§
impl Freeze for VocabularyFilterInfo
impl RefUnwindSafe for VocabularyFilterInfo
impl Send for VocabularyFilterInfo
impl Sync for VocabularyFilterInfo
impl Unpin for VocabularyFilterInfo
impl UnwindSafe for VocabularyFilterInfo
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