pub enum DocumentKind {
MunicipalCouncilMeetingProtocol,
MunicipalCouncilMeetingInvitation,
MunicipalCouncilSummaryReport,
OfficialMunicipalJournal,
}Expand description
The kinds of documents that can be downloaded from available data sources.
Variants§
MunicipalCouncilMeetingProtocol
A document containing the protocol of the municipal council meeting procedure in detail as demanded by law
A proper protocol typically follows this structure (not necessarily in exactly this order):
- A header with location and date
- A list of the present and invited but absent participants
- An agenda listing all the items planned for this session
- A detailed section describing the discussion of each agenda item in detail
- Ballot results for agenda items that require a vote
MunicipalCouncilMeetingInvitation
One or more invitations to municipal council meetings
MunicipalCouncilSummaryReport
A report or summary of the municipal council meeting summarizing the outcome of each of the agenda items
OfficialMunicipalJournal
An official journal published by a municipality.
Municipal journals frequently contain a report or summary of the most recent municipal council meeting.
Trait Implementations§
Source§impl Clone for DocumentKind
impl Clone for DocumentKind
Source§fn clone(&self) -> DocumentKind
fn clone(&self) -> DocumentKind
Returns a duplicate of the value. Read more
1.0.0 · 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 DocumentKind
impl Debug for DocumentKind
Source§impl<'de> Deserialize<'de> for DocumentKind
impl<'de> Deserialize<'de> for DocumentKind
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 Ord for DocumentKind
impl Ord for DocumentKind
Source§fn cmp(&self, other: &DocumentKind) -> Ordering
fn cmp(&self, other: &DocumentKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DocumentKind
impl PartialEq for DocumentKind
Source§impl PartialOrd for DocumentKind
impl PartialOrd for DocumentKind
Source§impl Serialize for DocumentKind
impl Serialize for DocumentKind
impl Copy for DocumentKind
impl Eq for DocumentKind
impl StructuralPartialEq for DocumentKind
Auto Trait Implementations§
impl Freeze for DocumentKind
impl RefUnwindSafe for DocumentKind
impl Send for DocumentKind
impl Sync for DocumentKind
impl Unpin for DocumentKind
impl UnwindSafe for DocumentKind
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