pub struct EnableGrepIndexResponse {
pub namespace_id: NamespaceId,
pub already_enabled: bool,
pub state: GrepIndexLifecycle,
}Expand description
Result of enabling the grep index on a namespace (admin plane).
Fields§
§namespace_id: NamespaceIdNamespace whose grep root was enabled.
already_enabled: boolTrue when the namespace already carried an enabled grep root.
state: GrepIndexLifecycleThe durable lifecycle this call published or found.
Trait Implementations§
Source§impl Clone for EnableGrepIndexResponse
impl Clone for EnableGrepIndexResponse
Source§fn clone(&self) -> EnableGrepIndexResponse
fn clone(&self) -> EnableGrepIndexResponse
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 EnableGrepIndexResponse
impl Debug for EnableGrepIndexResponse
Source§impl<'de> Deserialize<'de> for EnableGrepIndexResponse
impl<'de> Deserialize<'de> for EnableGrepIndexResponse
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 EnableGrepIndexResponse
Source§impl PartialEq for EnableGrepIndexResponse
impl PartialEq for EnableGrepIndexResponse
Source§impl Serialize for EnableGrepIndexResponse
impl Serialize for EnableGrepIndexResponse
impl StructuralPartialEq for EnableGrepIndexResponse
Auto Trait Implementations§
impl Freeze for EnableGrepIndexResponse
impl RefUnwindSafe for EnableGrepIndexResponse
impl Send for EnableGrepIndexResponse
impl Sync for EnableGrepIndexResponse
impl Unpin for EnableGrepIndexResponse
impl UnsafeUnpin for EnableGrepIndexResponse
impl UnwindSafe for EnableGrepIndexResponse
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