pub struct GetGovernanceLogInput {
pub entry_type: Option<String>,
pub limit: Option<u64>,
pub detail: Option<String>,
}Expand description
Input for reading the governance log (Council decisions, appeals, etc).
Fields§
§entry_type: Option<String>Filter by type: ‘council_decision’, ‘appeals_court_decision’, etc.
limit: Option<u64>Max entries to return (default 10)
detail: Option<String>Level of detail: “summary” (default — concise, token-budget friendly) or “full” (verbatim rationales). Use “full” when you need to verify a specific claim against the original text.
Trait Implementations§
Source§impl Clone for GetGovernanceLogInput
impl Clone for GetGovernanceLogInput
Source§fn clone(&self) -> GetGovernanceLogInput
fn clone(&self) -> GetGovernanceLogInput
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 GetGovernanceLogInput
impl Debug for GetGovernanceLogInput
Source§impl<'de> Deserialize<'de> for GetGovernanceLogInput
impl<'de> Deserialize<'de> for GetGovernanceLogInput
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 GetGovernanceLogInput
impl RefUnwindSafe for GetGovernanceLogInput
impl Send for GetGovernanceLogInput
impl Sync for GetGovernanceLogInput
impl Unpin for GetGovernanceLogInput
impl UnsafeUnpin for GetGovernanceLogInput
impl UnwindSafe for GetGovernanceLogInput
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