pub struct Periodical {Show 34 fields
pub type_: Periodical_,
pub about: Option<Vec<ThingTypes>>,
pub alternate_names: Option<Vec<String>>,
pub authors: Option<Vec<CreativeWorkAuthors>>,
pub comments: Option<Vec<Comment>>,
pub content: Option<Box<CreativeWorkContent>>,
pub date_accepted: Option<Box<Date>>,
pub date_created: Option<Box<Date>>,
pub date_end: Option<Box<Date>>,
pub date_modified: Option<Box<Date>>,
pub date_published: Option<Box<Date>>,
pub date_received: Option<Box<Date>>,
pub date_start: Option<Box<Date>>,
pub description: Option<Box<ThingDescription>>,
pub editors: Option<Vec<Person>>,
pub funded_by: Option<Vec<CreativeWorkFundedBy>>,
pub funders: Option<Vec<CreativeWorkFunders>>,
pub genre: Option<Vec<String>>,
pub id: Option<Box<String>>,
pub identifiers: Option<Vec<ThingIdentifiers>>,
pub images: Option<Vec<ThingImages>>,
pub is_part_of: Option<Box<CreativeWorkTypes>>,
pub issns: Option<Vec<String>>,
pub keywords: Option<Vec<String>>,
pub licenses: Option<Vec<CreativeWorkLicenses>>,
pub maintainers: Option<Vec<CreativeWorkMaintainers>>,
pub name: Option<Box<String>>,
pub parts: Option<Vec<CreativeWorkTypes>>,
pub publisher: Option<Box<CreativeWorkPublisher>>,
pub references: Option<Vec<CreativeWorkReferences>>,
pub text: Option<Box<String>>,
pub title: Option<Box<CreativeWorkTitle>>,
pub url: Option<Box<String>>,
pub version: Option<Box<CreativeWorkVersion>>,
}
Expand description
A periodical publication.
Fields§
§type_: Periodical_
The name of this type
about: Option<Vec<ThingTypes>>
The subject matter of the content.
alternate_names: Option<Vec<String>>
Alternate names (aliases) for the item.
The authors of this creative work.
comments: Option<Vec<Comment>>
Comments about this creative work.
content: Option<Box<CreativeWorkContent>>
The structured content of this creative work c.f. property text
.
date_accepted: Option<Box<Date>>
Date/time of acceptance.
date_created: Option<Box<Date>>
Date/time of creation.
date_end: Option<Box<Date>>
The date this Periodical ceased publication.
date_modified: Option<Box<Date>>
Date/time of most recent modification.
date_published: Option<Box<Date>>
Date of first publication.
date_received: Option<Box<Date>>
Date/time that work was received.
date_start: Option<Box<Date>>
The date this Periodical was first published.
description: Option<Box<ThingDescription>>
A description of the item.
editors: Option<Vec<Person>>
People who edited the CreativeWork
.
funded_by: Option<Vec<CreativeWorkFundedBy>>
Grants that funded the CreativeWork
; reverse of fundedItems
.
funders: Option<Vec<CreativeWorkFunders>>
People or organizations that funded the CreativeWork
.
genre: Option<Vec<String>>
Genre of the creative work, broadcast channel or group.
id: Option<Box<String>>
The identifier for this item.
identifiers: Option<Vec<ThingIdentifiers>>
Any kind of identifier for any kind of Thing.
images: Option<Vec<ThingImages>>
Images of the item.
is_part_of: Option<Box<CreativeWorkTypes>>
An item or other CreativeWork that this CreativeWork is a part of.
issns: Option<Vec<String>>
The International Standard Serial Number(s) (ISSN) that identifies this serial publication.
keywords: Option<Vec<String>>
Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.
licenses: Option<Vec<CreativeWorkLicenses>>
License documents that applies to this content, typically indicated by URL.
maintainers: Option<Vec<CreativeWorkMaintainers>>
The people or organizations who maintain this CreativeWork.
name: Option<Box<String>>
The name of the item.
parts: Option<Vec<CreativeWorkTypes>>
Elements of the collection which can be a variety of different elements, such as Articles, Datatables, Tables and more.
publisher: Option<Box<CreativeWorkPublisher>>
A publisher of the CreativeWork.
references: Option<Vec<CreativeWorkReferences>>
References to other creative works, such as another publication, web page, scholarly article, etc.
text: Option<Box<String>>
The textual content of this creative work.
title: Option<Box<CreativeWorkTitle>>
The title of the creative work.
url: Option<Box<String>>
The URL of the item.
version: Option<Box<CreativeWorkVersion>>
The version of the creative work.
Trait Implementations§
Source§impl Clone for Periodical
impl Clone for Periodical
Source§fn clone(&self) -> Periodical
fn clone(&self) -> Periodical
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more