#[non_exhaustive]pub struct VettingRevocation {
pub issuer: String,
pub statement_id: String,
pub statement_digest_multibase: String,
pub reason: Option<String>,
pub recorded_at: DateTime<Utc>,
pub review_state: String,
pub affected_join_requests: Vec<String>,
pub affected_members: Vec<String>,
}Expand description
One vetting statement withdrawal notice, as GET /vetting/revocations
reports it, with the admissions it touches.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.issuer: StringThe vetter who withdrew the statement.
statement_id: StringThe statement’s id.
statement_digest_multibase: StringThe statement’s digestMultibase.
reason: Option<String>The vetter’s reason, when given.
recorded_at: DateTime<Utc>When the community recorded the notice.
review_state: StringneedsReview when a current member was admitted on the statement, else
noAdmission.
affected_join_requests: Vec<String>Approved join requests that counted the statement.
affected_members: Vec<String>Of their applicants, those who are current members.
Trait Implementations§
Source§impl Clone for VettingRevocation
impl Clone for VettingRevocation
Source§fn clone(&self) -> VettingRevocation
fn clone(&self) -> VettingRevocation
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 VettingRevocation
impl Debug for VettingRevocation
Source§impl<'de> Deserialize<'de> for VettingRevocation
impl<'de> Deserialize<'de> for VettingRevocation
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 PartialEq for VettingRevocation
impl PartialEq for VettingRevocation
Source§impl Serialize for VettingRevocation
impl Serialize for VettingRevocation
impl StructuralPartialEq for VettingRevocation
Auto Trait Implementations§
impl Freeze for VettingRevocation
impl RefUnwindSafe for VettingRevocation
impl Send for VettingRevocation
impl Sync for VettingRevocation
impl Unpin for VettingRevocation
impl UnsafeUnpin for VettingRevocation
impl UnwindSafe for VettingRevocation
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