pub struct DeleteNamespaceResponse {
pub namespace_id: NamespaceId,
pub head_seq: ChangeSeq,
}Expand description
Result of deleting a namespace.
Fields§
§namespace_id: NamespaceIdNamespace whose history ended.
head_seq: ChangeSeqThe head’s last committed sequence; the delete linearized immediately after it, so this is where history ended.
Trait Implementations§
Source§impl Clone for DeleteNamespaceResponse
impl Clone for DeleteNamespaceResponse
Source§fn clone(&self) -> DeleteNamespaceResponse
fn clone(&self) -> DeleteNamespaceResponse
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 DeleteNamespaceResponse
impl Debug for DeleteNamespaceResponse
Source§impl<'de> Deserialize<'de> for DeleteNamespaceResponse
impl<'de> Deserialize<'de> for DeleteNamespaceResponse
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 DeleteNamespaceResponse
Source§impl PartialEq for DeleteNamespaceResponse
impl PartialEq for DeleteNamespaceResponse
Source§impl Serialize for DeleteNamespaceResponse
impl Serialize for DeleteNamespaceResponse
impl StructuralPartialEq for DeleteNamespaceResponse
Auto Trait Implementations§
impl Freeze for DeleteNamespaceResponse
impl RefUnwindSafe for DeleteNamespaceResponse
impl Send for DeleteNamespaceResponse
impl Sync for DeleteNamespaceResponse
impl Unpin for DeleteNamespaceResponse
impl UnsafeUnpin for DeleteNamespaceResponse
impl UnwindSafe for DeleteNamespaceResponse
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