pub struct GovernanceLogEntry {
pub id: String,
pub entry_type: GovernanceLogEntryType,
pub data: Value,
pub created_at: DateTime<Utc>,
pub tags: Option<Vec<String>>,
}Expand description
A single entry in the governance log (Council decisions, appeals rulings, policy changes, etc.).
Fields§
§id: String§entry_type: GovernanceLogEntryType§data: Value§created_at: DateTime<Utc>Trait Implementations§
Source§impl Debug for GovernanceLogEntry
impl Debug for GovernanceLogEntry
Source§impl<'de> Deserialize<'de> for GovernanceLogEntry
impl<'de> Deserialize<'de> for GovernanceLogEntry
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
Auto Trait Implementations§
impl Freeze for GovernanceLogEntry
impl RefUnwindSafe for GovernanceLogEntry
impl Send for GovernanceLogEntry
impl Sync for GovernanceLogEntry
impl Unpin for GovernanceLogEntry
impl UnsafeUnpin for GovernanceLogEntry
impl UnwindSafe for GovernanceLogEntry
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