pub struct Consultation {Show 14 fields
pub id: ConsultationId,
pub namespace: ConsultationNamespaceUrl,
pub paper: Option<PaperId>,
pub agenda_item: Option<AgendaItemId>,
pub meeting: Option<MeetingId>,
pub organization: Vec<OrganizationId>,
pub authoritative: Option<bool>,
pub role: Option<String>,
pub license: Option<Url>,
pub keyword: Vec<Keyword>,
pub created: DateTime,
pub modified: DateTime,
pub web: Option<Url>,
pub deleted: Option<bool>,
}Fields§
§id: ConsultationId§namespace: ConsultationNamespaceUrl§paper: Option<PaperId>§agenda_item: Option<AgendaItemId>§meeting: Option<MeetingId>§organization: Vec<OrganizationId>§role: Option<String>§license: Option<Url>§keyword: Vec<Keyword>§created: DateTime§modified: DateTime§web: Option<Url>§deleted: Option<bool>Trait Implementations§
Source§impl Clone for Consultation
impl Clone for Consultation
Source§fn clone(&self) -> Consultation
fn clone(&self) -> Consultation
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Consultation
impl Debug for Consultation
Source§impl<'de> Deserialize<'de> for Consultation
impl<'de> Deserialize<'de> for Consultation
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 Consultation
impl PartialEq for Consultation
Source§impl Serialize for Consultation
impl Serialize for Consultation
impl StructuralPartialEq for Consultation
Auto Trait Implementations§
impl Freeze for Consultation
impl RefUnwindSafe for Consultation
impl Send for Consultation
impl Sync for Consultation
impl Unpin for Consultation
impl UnwindSafe for Consultation
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