pub struct GovernanceLogEntry {
pub id: String,
pub entry_type: GovernanceLogEntryType,
pub data: Value,
pub created_at: DateTime<Utc>,
pub tags: Option<Vec<String>>,
pub summary: Option<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>§summary: Option<String>The Clerk’s short summary of the entry, when one has been
generated. Usually the better read: data for a Council decision
can carry the full multi-round deliberation transcript, while the
summary is 2-3 sentences grounded in the Constitution.
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