pub struct IndexSettings {
pub index: Option<i32>,
pub type: Option<String>,
pub settings: Option<Value>,
pub updated_at: Option<String>,
}
Expand description
IndexSettings : 索引设置项
Fields§
§index: Option<i32>
§type: Option<String>
§settings: Option<Value>
§updated_at: Option<String>
Implementations§
Source§impl IndexSettings
impl IndexSettings
Sourcepub fn new() -> IndexSettings
pub fn new() -> IndexSettings
索引设置项
Trait Implementations§
Source§impl Clone for IndexSettings
impl Clone for IndexSettings
Source§fn clone(&self) -> IndexSettings
fn clone(&self) -> IndexSettings
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 IndexSettings
impl Debug for IndexSettings
Source§impl<'de> Deserialize<'de> for IndexSettings
impl<'de> Deserialize<'de> for IndexSettings
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 IndexSettings
impl PartialEq for IndexSettings
Source§impl Serialize for IndexSettings
impl Serialize for IndexSettings
impl StructuralPartialEq for IndexSettings
Auto Trait Implementations§
impl Freeze for IndexSettings
impl RefUnwindSafe for IndexSettings
impl Send for IndexSettings
impl Sync for IndexSettings
impl Unpin for IndexSettings
impl UnwindSafe for IndexSettings
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