[][src]Struct zotero::data_structure::item::AudioRecordingData

pub struct AudioRecordingData {
    pub key: String,
    pub version: usize,
    pub item_type: String,
    pub title: String,
    pub creators: Vec<Creator>,
    pub abstract_note: String,
    pub audio_recording_format: String,
    pub series_title: String,
    pub volume: String,
    pub number_of_volumes: String,
    pub place: String,
    pub label: String,
    pub date: String,
    pub running_time: String,
    pub language: String,
    pub isbn: String,
    pub short_title: String,
    pub archive: String,
    pub archive_location: String,
    pub library_catalog: String,
    pub call_number: String,
    pub url: String,
    pub access_date: String,
    pub rights: String,
    pub extra: String,
    pub tags: Vec<String>,
    pub collections: Vec<String>,
    pub relations: HashMap<String, String>,
    pub date_added: String,
    pub date_modified: String,
}

Any form of audio recording, including music, spoken word, sound effects, archival recordings, or audio-based scientific figures.

Fields

key: Stringversion: usizeitem_type: Stringtitle: Stringcreators: Vec<Creator>abstract_note: Stringaudio_recording_format: Stringseries_title: Stringvolume: Stringnumber_of_volumes: Stringplace: Stringlabel: Stringdate: Stringrunning_time: Stringlanguage: Stringisbn: Stringshort_title: Stringarchive: Stringarchive_location: Stringlibrary_catalog: Stringcall_number: Stringurl: Stringaccess_date: Stringrights: Stringextra: Stringtags: Vec<String>collections: Vec<String>relations: HashMap<String, String>date_added: Stringdate_modified: String

Trait Implementations

impl ToJson for AudioRecordingData[src]

impl Clone for AudioRecordingData[src]

impl Default for AudioRecordingData[src]

impl Debug for AudioRecordingData[src]

impl Serialize for AudioRecordingData[src]

impl<'de> Deserialize<'de> for AudioRecordingData[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]