pub struct EdgeRevokeResponse {
pub removed: bool,
}Expand description
Response body for the edge-peer revoke endpoint.
Fields§
§removed: booltrue when a live peer was actually removed; false when the name
was unknown or already expired (revocation is idempotent).
Trait Implementations§
Source§impl Clone for EdgeRevokeResponse
impl Clone for EdgeRevokeResponse
Source§fn clone(&self) -> EdgeRevokeResponse
fn clone(&self) -> EdgeRevokeResponse
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 ComposeSchema for EdgeRevokeResponse
impl ComposeSchema for EdgeRevokeResponse
Source§impl Debug for EdgeRevokeResponse
impl Debug for EdgeRevokeResponse
Source§impl<'de> Deserialize<'de> for EdgeRevokeResponse
impl<'de> Deserialize<'de> for EdgeRevokeResponse
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
Source§impl Serialize for EdgeRevokeResponse
impl Serialize for EdgeRevokeResponse
Auto Trait Implementations§
impl Freeze for EdgeRevokeResponse
impl RefUnwindSafe for EdgeRevokeResponse
impl Send for EdgeRevokeResponse
impl Sync for EdgeRevokeResponse
impl Unpin for EdgeRevokeResponse
impl UnsafeUnpin for EdgeRevokeResponse
impl UnwindSafe for EdgeRevokeResponse
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