pub struct ReleaseCheckpointResponse {
pub namespace_id: NamespaceId,
pub checkpoint_id: CheckpointId,
pub was_active: bool,
}Expand description
Result of releasing a checkpoint pin.
Fields§
§namespace_id: NamespaceIdNamespace the checkpoint belonged to.
checkpoint_id: CheckpointIdCheckpoint the release targeted.
was_active: boolTrue when this call flipped an active record to released; false when the record was already released or no longer exists. Release is idempotent — the end state is the same either way.
Trait Implementations§
Source§impl Clone for ReleaseCheckpointResponse
impl Clone for ReleaseCheckpointResponse
Source§fn clone(&self) -> ReleaseCheckpointResponse
fn clone(&self) -> ReleaseCheckpointResponse
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 ReleaseCheckpointResponse
impl Debug for ReleaseCheckpointResponse
Source§impl<'de> Deserialize<'de> for ReleaseCheckpointResponse
impl<'de> Deserialize<'de> for ReleaseCheckpointResponse
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 ReleaseCheckpointResponse
impl StructuralPartialEq for ReleaseCheckpointResponse
Auto Trait Implementations§
impl Freeze for ReleaseCheckpointResponse
impl RefUnwindSafe for ReleaseCheckpointResponse
impl Send for ReleaseCheckpointResponse
impl Sync for ReleaseCheckpointResponse
impl Unpin for ReleaseCheckpointResponse
impl UnsafeUnpin for ReleaseCheckpointResponse
impl UnwindSafe for ReleaseCheckpointResponse
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