pub struct NamespaceEntityConfig {
pub namespace: String,
pub extract_entities: bool,
pub entity_types: Vec<String>,
}Expand description
Response from GET /v1/namespaces/{ns}/config.
Fields§
§namespace: String§extract_entities: bool§entity_types: Vec<String>Trait Implementations§
Source§impl Clone for NamespaceEntityConfig
impl Clone for NamespaceEntityConfig
Source§fn clone(&self) -> NamespaceEntityConfig
fn clone(&self) -> NamespaceEntityConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NamespaceEntityConfig
impl Debug for NamespaceEntityConfig
Source§impl<'de> Deserialize<'de> for NamespaceEntityConfig
impl<'de> Deserialize<'de> for NamespaceEntityConfig
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
Auto Trait Implementations§
impl Freeze for NamespaceEntityConfig
impl RefUnwindSafe for NamespaceEntityConfig
impl Send for NamespaceEntityConfig
impl Sync for NamespaceEntityConfig
impl Unpin for NamespaceEntityConfig
impl UnsafeUnpin for NamespaceEntityConfig
impl UnwindSafe for NamespaceEntityConfig
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