pub struct DisableGrepIndexResponse {
pub namespace_id: NamespaceId,
pub was_enabled: bool,
}Expand description
Result of disabling the grep index on a namespace (admin plane).
Fields§
§namespace_id: NamespaceIdNamespace whose grep root was disabled.
was_enabled: boolFalse when the namespace had no enabled grep root.
Trait Implementations§
Source§impl Clone for DisableGrepIndexResponse
impl Clone for DisableGrepIndexResponse
Source§fn clone(&self) -> DisableGrepIndexResponse
fn clone(&self) -> DisableGrepIndexResponse
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 DisableGrepIndexResponse
impl Debug for DisableGrepIndexResponse
Source§impl<'de> Deserialize<'de> for DisableGrepIndexResponse
impl<'de> Deserialize<'de> for DisableGrepIndexResponse
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
impl Eq for DisableGrepIndexResponse
Source§impl PartialEq for DisableGrepIndexResponse
impl PartialEq for DisableGrepIndexResponse
Source§impl Serialize for DisableGrepIndexResponse
impl Serialize for DisableGrepIndexResponse
impl StructuralPartialEq for DisableGrepIndexResponse
Auto Trait Implementations§
impl Freeze for DisableGrepIndexResponse
impl RefUnwindSafe for DisableGrepIndexResponse
impl Send for DisableGrepIndexResponse
impl Sync for DisableGrepIndexResponse
impl Unpin for DisableGrepIndexResponse
impl UnsafeUnpin for DisableGrepIndexResponse
impl UnwindSafe for DisableGrepIndexResponse
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