pub struct RejectedPayload {
pub service_id: Uuid,
}Expand description
Payload for rejection notification.
Pushed by the controller when an admin rejects a pending enrollment. The service should disconnect and exit; it must not retry the enrollment flow automatically.
Fields§
§service_id: UuidTrait Implementations§
Source§impl Clone for RejectedPayload
impl Clone for RejectedPayload
Source§fn clone(&self) -> RejectedPayload
fn clone(&self) -> RejectedPayload
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 RejectedPayload
impl Debug for RejectedPayload
Source§impl<'de> Deserialize<'de> for RejectedPayload
impl<'de> Deserialize<'de> for RejectedPayload
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 RejectedPayload
Source§impl PartialEq for RejectedPayload
impl PartialEq for RejectedPayload
Source§impl Serialize for RejectedPayload
impl Serialize for RejectedPayload
impl StructuralPartialEq for RejectedPayload
Auto Trait Implementations§
impl Freeze for RejectedPayload
impl RefUnwindSafe for RejectedPayload
impl Send for RejectedPayload
impl Sync for RejectedPayload
impl Unpin for RejectedPayload
impl UnsafeUnpin for RejectedPayload
impl UnwindSafe for RejectedPayload
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.